composer.lock 372 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331
  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": "9fb48c117bc3478160f1b69ad28ec904",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  20. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  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. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "support": {
  63. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  64. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  65. },
  66. "time": "2021-06-18T13:26:35+00:00"
  67. },
  68. {
  69. "name": "brick/math",
  70. "version": "0.9.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/brick/math.git",
  74. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  79. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "ext-json": "*",
  90. "php": "^7.1 || ^8.0"
  91. },
  92. "require-dev": {
  93. "php-coveralls/php-coveralls": "^2.2",
  94. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  95. "vimeo/psalm": "4.3.2"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Brick\\Math\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "description": "Arbitrary-precision arithmetic library",
  108. "keywords": [
  109. "Arbitrary-precision",
  110. "BigInteger",
  111. "BigRational",
  112. "arithmetic",
  113. "bigdecimal",
  114. "bignum",
  115. "brick",
  116. "math"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/brick/math/issues",
  120. "source": "https://github.com/brick/math/tree/0.9.2"
  121. },
  122. "funding": [
  123. {
  124. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  125. "type": "tidelift"
  126. }
  127. ],
  128. "time": "2021-01-20T22:51:39+00:00"
  129. },
  130. {
  131. "name": "cakephp/chronos",
  132. "version": "2.2.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/cakephp/chronos.git",
  136. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/cakephp/chronos/zipball/556e14da67307ffc2e68beeb7df0694dc8d1207d",
  141. "reference": "556e14da67307ffc2e68beeb7df0694dc8d1207d",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": ">=7.2"
  152. },
  153. "require-dev": {
  154. "cakephp/cakephp-codesniffer": "^4.5",
  155. "phpunit/phpunit": "^8.0 || ^9.0"
  156. },
  157. "type": "library",
  158. "autoload": {
  159. "psr-4": {
  160. "Cake\\Chronos\\": "src/"
  161. },
  162. "files": [
  163. "src/carbon_compat.php"
  164. ]
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Brian Nesbitt",
  173. "email": "brian@nesbot.com",
  174. "homepage": "http://nesbot.com"
  175. },
  176. {
  177. "name": "The CakePHP Team",
  178. "homepage": "http://cakephp.org"
  179. }
  180. ],
  181. "description": "A simple API extension for DateTime.",
  182. "homepage": "http://cakephp.org",
  183. "keywords": [
  184. "date",
  185. "datetime",
  186. "time"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/cakephp",
  190. "issues": "https://github.com/cakephp/chronos/issues",
  191. "source": "https://github.com/cakephp/chronos"
  192. },
  193. "time": "2021-06-17T13:49:10+00:00"
  194. },
  195. {
  196. "name": "dasprid/enum",
  197. "version": "1.0.3",
  198. "source": {
  199. "type": "git",
  200. "url": "https://github.com/DASPRiD/Enum.git",
  201. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  202. },
  203. "dist": {
  204. "type": "zip",
  205. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  206. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  207. "shasum": "",
  208. "mirrors": [
  209. {
  210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  211. "preferred": true
  212. }
  213. ]
  214. },
  215. "require-dev": {
  216. "phpunit/phpunit": "^7 | ^8 | ^9",
  217. "squizlabs/php_codesniffer": "^3.4"
  218. },
  219. "type": "library",
  220. "autoload": {
  221. "psr-4": {
  222. "DASPRiD\\Enum\\": "src/"
  223. }
  224. },
  225. "notification-url": "https://packagist.org/downloads/",
  226. "license": [
  227. "BSD-2-Clause"
  228. ],
  229. "authors": [
  230. {
  231. "name": "Ben Scholzen 'DASPRiD'",
  232. "email": "mail@dasprids.de",
  233. "homepage": "https://dasprids.de/",
  234. "role": "Developer"
  235. }
  236. ],
  237. "description": "PHP 7.1 enum implementation",
  238. "keywords": [
  239. "enum",
  240. "map"
  241. ],
  242. "support": {
  243. "issues": "https://github.com/DASPRiD/Enum/issues",
  244. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  245. },
  246. "time": "2020-10-02T16:03:48+00:00"
  247. },
  248. {
  249. "name": "doctrine/cache",
  250. "version": "1.11.3",
  251. "source": {
  252. "type": "git",
  253. "url": "https://github.com/doctrine/cache.git",
  254. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
  255. },
  256. "dist": {
  257. "type": "zip",
  258. "url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
  259. "reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
  260. "shasum": "",
  261. "mirrors": [
  262. {
  263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  264. "preferred": true
  265. }
  266. ]
  267. },
  268. "require": {
  269. "php": "~7.1 || ^8.0"
  270. },
  271. "conflict": {
  272. "doctrine/common": ">2.2,<2.4",
  273. "psr/cache": ">=3"
  274. },
  275. "require-dev": {
  276. "alcaeus/mongo-php-adapter": "^1.1",
  277. "cache/integration-tests": "dev-master",
  278. "doctrine/coding-standard": "^8.0",
  279. "mongodb/mongodb": "^1.1",
  280. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  281. "predis/predis": "~1.0",
  282. "psr/cache": "^1.0 || ^2.0",
  283. "symfony/cache": "^4.4 || ^5.2"
  284. },
  285. "suggest": {
  286. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "psr-4": {
  291. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  292. }
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "MIT"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Guilherme Blanco",
  301. "email": "guilhermeblanco@gmail.com"
  302. },
  303. {
  304. "name": "Roman Borschel",
  305. "email": "roman@code-factory.org"
  306. },
  307. {
  308. "name": "Benjamin Eberlei",
  309. "email": "kontakt@beberlei.de"
  310. },
  311. {
  312. "name": "Jonathan Wage",
  313. "email": "jonwage@gmail.com"
  314. },
  315. {
  316. "name": "Johannes Schmitt",
  317. "email": "schmittjoh@gmail.com"
  318. }
  319. ],
  320. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  321. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  322. "keywords": [
  323. "abstraction",
  324. "apcu",
  325. "cache",
  326. "caching",
  327. "couchdb",
  328. "memcached",
  329. "php",
  330. "redis",
  331. "xcache"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/doctrine/cache/issues",
  335. "source": "https://github.com/doctrine/cache/tree/1.11.3"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://www.doctrine-project.org/sponsorship.html",
  340. "type": "custom"
  341. },
  342. {
  343. "url": "https://www.patreon.com/phpdoctrine",
  344. "type": "patreon"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2021-05-25T09:01:55+00:00"
  352. },
  353. {
  354. "name": "doctrine/dbal",
  355. "version": "2.13.1",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/doctrine/dbal.git",
  359. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  364. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  365. "shasum": "",
  366. "mirrors": [
  367. {
  368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  369. "preferred": true
  370. }
  371. ]
  372. },
  373. "require": {
  374. "doctrine/cache": "^1.0",
  375. "doctrine/deprecations": "^0.5.3",
  376. "doctrine/event-manager": "^1.0",
  377. "ext-pdo": "*",
  378. "php": "^7.1 || ^8"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "8.2.0",
  382. "jetbrains/phpstorm-stubs": "2020.2",
  383. "phpstan/phpstan": "0.12.81",
  384. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  385. "squizlabs/php_codesniffer": "3.6.0",
  386. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  387. "vimeo/psalm": "4.6.4"
  388. },
  389. "suggest": {
  390. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  391. },
  392. "bin": [
  393. "bin/doctrine-dbal"
  394. ],
  395. "type": "library",
  396. "autoload": {
  397. "psr-4": {
  398. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  399. }
  400. },
  401. "notification-url": "https://packagist.org/downloads/",
  402. "license": [
  403. "MIT"
  404. ],
  405. "authors": [
  406. {
  407. "name": "Guilherme Blanco",
  408. "email": "guilhermeblanco@gmail.com"
  409. },
  410. {
  411. "name": "Roman Borschel",
  412. "email": "roman@code-factory.org"
  413. },
  414. {
  415. "name": "Benjamin Eberlei",
  416. "email": "kontakt@beberlei.de"
  417. },
  418. {
  419. "name": "Jonathan Wage",
  420. "email": "jonwage@gmail.com"
  421. }
  422. ],
  423. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  424. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  425. "keywords": [
  426. "abstraction",
  427. "database",
  428. "db2",
  429. "dbal",
  430. "mariadb",
  431. "mssql",
  432. "mysql",
  433. "oci8",
  434. "oracle",
  435. "pdo",
  436. "pgsql",
  437. "postgresql",
  438. "queryobject",
  439. "sasql",
  440. "sql",
  441. "sqlanywhere",
  442. "sqlite",
  443. "sqlserver",
  444. "sqlsrv"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/dbal/issues",
  448. "source": "https://github.com/doctrine/dbal/tree/2.13.1"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2021-04-17T17:30:19+00:00"
  465. },
  466. {
  467. "name": "doctrine/deprecations",
  468. "version": "v0.5.3",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/doctrine/deprecations.git",
  472. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  477. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": "^7.1|^8.0"
  488. },
  489. "require-dev": {
  490. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  491. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  492. "psr/log": "^1.0"
  493. },
  494. "suggest": {
  495. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  496. },
  497. "type": "library",
  498. "autoload": {
  499. "psr-4": {
  500. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  508. "homepage": "https://www.doctrine-project.org/",
  509. "support": {
  510. "issues": "https://github.com/doctrine/deprecations/issues",
  511. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  512. },
  513. "time": "2021-03-21T12:59:47+00:00"
  514. },
  515. {
  516. "name": "doctrine/event-manager",
  517. "version": "1.1.1",
  518. "source": {
  519. "type": "git",
  520. "url": "https://github.com/doctrine/event-manager.git",
  521. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  522. },
  523. "dist": {
  524. "type": "zip",
  525. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  526. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  527. "shasum": "",
  528. "mirrors": [
  529. {
  530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  531. "preferred": true
  532. }
  533. ]
  534. },
  535. "require": {
  536. "php": "^7.1 || ^8.0"
  537. },
  538. "conflict": {
  539. "doctrine/common": "<2.9@dev"
  540. },
  541. "require-dev": {
  542. "doctrine/coding-standard": "^6.0",
  543. "phpunit/phpunit": "^7.0"
  544. },
  545. "type": "library",
  546. "extra": {
  547. "branch-alias": {
  548. "dev-master": "1.0.x-dev"
  549. }
  550. },
  551. "autoload": {
  552. "psr-4": {
  553. "Doctrine\\Common\\": "lib/Doctrine/Common"
  554. }
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Guilherme Blanco",
  563. "email": "guilhermeblanco@gmail.com"
  564. },
  565. {
  566. "name": "Roman Borschel",
  567. "email": "roman@code-factory.org"
  568. },
  569. {
  570. "name": "Benjamin Eberlei",
  571. "email": "kontakt@beberlei.de"
  572. },
  573. {
  574. "name": "Jonathan Wage",
  575. "email": "jonwage@gmail.com"
  576. },
  577. {
  578. "name": "Johannes Schmitt",
  579. "email": "schmittjoh@gmail.com"
  580. },
  581. {
  582. "name": "Marco Pivetta",
  583. "email": "ocramius@gmail.com"
  584. }
  585. ],
  586. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  587. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  588. "keywords": [
  589. "event",
  590. "event dispatcher",
  591. "event manager",
  592. "event system",
  593. "events"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/doctrine/event-manager/issues",
  597. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  598. },
  599. "funding": [
  600. {
  601. "url": "https://www.doctrine-project.org/sponsorship.html",
  602. "type": "custom"
  603. },
  604. {
  605. "url": "https://www.patreon.com/phpdoctrine",
  606. "type": "patreon"
  607. },
  608. {
  609. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  610. "type": "tidelift"
  611. }
  612. ],
  613. "time": "2020-05-29T18:28:51+00:00"
  614. },
  615. {
  616. "name": "doctrine/inflector",
  617. "version": "2.0.3",
  618. "source": {
  619. "type": "git",
  620. "url": "https://github.com/doctrine/inflector.git",
  621. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  622. },
  623. "dist": {
  624. "type": "zip",
  625. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  626. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  627. "shasum": "",
  628. "mirrors": [
  629. {
  630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  631. "preferred": true
  632. }
  633. ]
  634. },
  635. "require": {
  636. "php": "^7.2 || ^8.0"
  637. },
  638. "require-dev": {
  639. "doctrine/coding-standard": "^7.0",
  640. "phpstan/phpstan": "^0.11",
  641. "phpstan/phpstan-phpunit": "^0.11",
  642. "phpstan/phpstan-strict-rules": "^0.11",
  643. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  644. },
  645. "type": "library",
  646. "extra": {
  647. "branch-alias": {
  648. "dev-master": "2.0.x-dev"
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Guilherme Blanco",
  663. "email": "guilhermeblanco@gmail.com"
  664. },
  665. {
  666. "name": "Roman Borschel",
  667. "email": "roman@code-factory.org"
  668. },
  669. {
  670. "name": "Benjamin Eberlei",
  671. "email": "kontakt@beberlei.de"
  672. },
  673. {
  674. "name": "Jonathan Wage",
  675. "email": "jonwage@gmail.com"
  676. },
  677. {
  678. "name": "Johannes Schmitt",
  679. "email": "schmittjoh@gmail.com"
  680. }
  681. ],
  682. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  683. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  684. "keywords": [
  685. "inflection",
  686. "inflector",
  687. "lowercase",
  688. "manipulation",
  689. "php",
  690. "plural",
  691. "singular",
  692. "strings",
  693. "uppercase",
  694. "words"
  695. ],
  696. "support": {
  697. "issues": "https://github.com/doctrine/inflector/issues",
  698. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  699. },
  700. "funding": [
  701. {
  702. "url": "https://www.doctrine-project.org/sponsorship.html",
  703. "type": "custom"
  704. },
  705. {
  706. "url": "https://www.patreon.com/phpdoctrine",
  707. "type": "patreon"
  708. },
  709. {
  710. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  711. "type": "tidelift"
  712. }
  713. ],
  714. "time": "2020-05-29T15:13:26+00:00"
  715. },
  716. {
  717. "name": "doctrine/lexer",
  718. "version": "1.2.1",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/doctrine/lexer.git",
  722. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  727. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  728. "shasum": "",
  729. "mirrors": [
  730. {
  731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  732. "preferred": true
  733. }
  734. ]
  735. },
  736. "require": {
  737. "php": "^7.2 || ^8.0"
  738. },
  739. "require-dev": {
  740. "doctrine/coding-standard": "^6.0",
  741. "phpstan/phpstan": "^0.11.8",
  742. "phpunit/phpunit": "^8.2"
  743. },
  744. "type": "library",
  745. "extra": {
  746. "branch-alias": {
  747. "dev-master": "1.2.x-dev"
  748. }
  749. },
  750. "autoload": {
  751. "psr-4": {
  752. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Guilherme Blanco",
  762. "email": "guilhermeblanco@gmail.com"
  763. },
  764. {
  765. "name": "Roman Borschel",
  766. "email": "roman@code-factory.org"
  767. },
  768. {
  769. "name": "Johannes Schmitt",
  770. "email": "schmittjoh@gmail.com"
  771. }
  772. ],
  773. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  774. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  775. "keywords": [
  776. "annotations",
  777. "docblock",
  778. "lexer",
  779. "parser",
  780. "php"
  781. ],
  782. "support": {
  783. "issues": "https://github.com/doctrine/lexer/issues",
  784. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  785. },
  786. "funding": [
  787. {
  788. "url": "https://www.doctrine-project.org/sponsorship.html",
  789. "type": "custom"
  790. },
  791. {
  792. "url": "https://www.patreon.com/phpdoctrine",
  793. "type": "patreon"
  794. },
  795. {
  796. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  797. "type": "tidelift"
  798. }
  799. ],
  800. "time": "2020-05-25T17:44:05+00:00"
  801. },
  802. {
  803. "name": "dragonmantank/cron-expression",
  804. "version": "v2.3.1",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/dragonmantank/cron-expression.git",
  808. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  813. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  814. "shasum": "",
  815. "mirrors": [
  816. {
  817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  818. "preferred": true
  819. }
  820. ]
  821. },
  822. "require": {
  823. "php": "^7.0|^8.0"
  824. },
  825. "require-dev": {
  826. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  827. },
  828. "type": "library",
  829. "extra": {
  830. "branch-alias": {
  831. "dev-master": "2.3-dev"
  832. }
  833. },
  834. "autoload": {
  835. "psr-4": {
  836. "Cron\\": "src/Cron/"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "MIT"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Michael Dowling",
  846. "email": "mtdowling@gmail.com",
  847. "homepage": "https://github.com/mtdowling"
  848. },
  849. {
  850. "name": "Chris Tankersley",
  851. "email": "chris@ctankersley.com",
  852. "homepage": "https://github.com/dragonmantank"
  853. }
  854. ],
  855. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  856. "keywords": [
  857. "cron",
  858. "schedule"
  859. ],
  860. "support": {
  861. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  862. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  863. },
  864. "funding": [
  865. {
  866. "url": "https://github.com/dragonmantank",
  867. "type": "github"
  868. }
  869. ],
  870. "time": "2020-10-13T00:52:37+00:00"
  871. },
  872. {
  873. "name": "egulias/email-validator",
  874. "version": "2.1.25",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/egulias/EmailValidator.git",
  878. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  883. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  884. "shasum": "",
  885. "mirrors": [
  886. {
  887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  888. "preferred": true
  889. }
  890. ]
  891. },
  892. "require": {
  893. "doctrine/lexer": "^1.0.1",
  894. "php": ">=5.5",
  895. "symfony/polyfill-intl-idn": "^1.10"
  896. },
  897. "require-dev": {
  898. "dominicsayers/isemail": "^3.0.7",
  899. "phpunit/phpunit": "^4.8.36|^7.5.15",
  900. "satooshi/php-coveralls": "^1.0.1"
  901. },
  902. "suggest": {
  903. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "2.1.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Egulias\\EmailValidator\\": "src"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Eduardo Gulias Davis"
  923. }
  924. ],
  925. "description": "A library for validating emails against several RFCs",
  926. "homepage": "https://github.com/egulias/EmailValidator",
  927. "keywords": [
  928. "email",
  929. "emailvalidation",
  930. "emailvalidator",
  931. "validation",
  932. "validator"
  933. ],
  934. "support": {
  935. "issues": "https://github.com/egulias/EmailValidator/issues",
  936. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  937. },
  938. "funding": [
  939. {
  940. "url": "https://github.com/egulias",
  941. "type": "github"
  942. }
  943. ],
  944. "time": "2020-12-29T14:50:06+00:00"
  945. },
  946. {
  947. "name": "endroid/qr-code",
  948. "version": "3.9.7",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/endroid/qr-code.git",
  952. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  957. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  958. "shasum": "",
  959. "mirrors": [
  960. {
  961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  962. "preferred": true
  963. }
  964. ]
  965. },
  966. "require": {
  967. "bacon/bacon-qr-code": "^2.0",
  968. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  969. "myclabs/php-enum": "^1.5",
  970. "php": "^7.3||^8.0",
  971. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  972. "symfony/property-access": "^3.4||^4.4||^5.0"
  973. },
  974. "require-dev": {
  975. "endroid/quality": "^1.5.2",
  976. "setasign/fpdf": "^1.8"
  977. },
  978. "suggest": {
  979. "ext-gd": "Required for generating PNG images",
  980. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  981. "setasign/fpdf": "Required to use the FPDF writer.",
  982. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  983. },
  984. "type": "library",
  985. "extra": {
  986. "branch-alias": {
  987. "dev-master": "3.x-dev"
  988. }
  989. },
  990. "autoload": {
  991. "psr-4": {
  992. "Endroid\\QrCode\\": "src/"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Jeroen van den Enden",
  1002. "email": "info@endroid.nl"
  1003. }
  1004. ],
  1005. "description": "Endroid QR Code",
  1006. "homepage": "https://github.com/endroid/qr-code",
  1007. "keywords": [
  1008. "bundle",
  1009. "code",
  1010. "endroid",
  1011. "php",
  1012. "qr",
  1013. "qrcode"
  1014. ],
  1015. "support": {
  1016. "issues": "https://github.com/endroid/qr-code/issues",
  1017. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1018. },
  1019. "funding": [
  1020. {
  1021. "url": "https://github.com/endroid",
  1022. "type": "github"
  1023. }
  1024. ],
  1025. "time": "2021-04-20T19:10:54+00:00"
  1026. },
  1027. {
  1028. "name": "ezyang/htmlpurifier",
  1029. "version": "v4.13.0",
  1030. "source": {
  1031. "type": "git",
  1032. "url": "https://github.com/ezyang/htmlpurifier.git",
  1033. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  1034. },
  1035. "dist": {
  1036. "type": "zip",
  1037. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1038. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  1039. "shasum": "",
  1040. "mirrors": [
  1041. {
  1042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1043. "preferred": true
  1044. }
  1045. ]
  1046. },
  1047. "require": {
  1048. "php": ">=5.2"
  1049. },
  1050. "require-dev": {
  1051. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  1052. },
  1053. "type": "library",
  1054. "autoload": {
  1055. "psr-0": {
  1056. "HTMLPurifier": "library/"
  1057. },
  1058. "files": [
  1059. "library/HTMLPurifier.composer.php"
  1060. ],
  1061. "exclude-from-classmap": [
  1062. "/library/HTMLPurifier/Language/"
  1063. ]
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "LGPL-2.1-or-later"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Edward Z. Yang",
  1072. "email": "admin@htmlpurifier.org",
  1073. "homepage": "http://ezyang.com"
  1074. }
  1075. ],
  1076. "description": "Standards compliant HTML filter written in PHP",
  1077. "homepage": "http://htmlpurifier.org/",
  1078. "keywords": [
  1079. "html"
  1080. ],
  1081. "support": {
  1082. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1083. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  1084. },
  1085. "time": "2020-06-29T00:56:53+00:00"
  1086. },
  1087. {
  1088. "name": "facade/flare-client-php",
  1089. "version": "1.8.1",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/facade/flare-client-php.git",
  1093. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1098. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  1099. "shasum": "",
  1100. "mirrors": [
  1101. {
  1102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1103. "preferred": true
  1104. }
  1105. ]
  1106. },
  1107. "require": {
  1108. "facade/ignition-contracts": "~1.0",
  1109. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  1110. "php": "^7.1|^8.0",
  1111. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  1112. "symfony/mime": "^3.4|^4.0|^5.1",
  1113. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  1114. },
  1115. "require-dev": {
  1116. "friendsofphp/php-cs-fixer": "^2.14",
  1117. "phpunit/phpunit": "^7.5.16",
  1118. "spatie/phpunit-snapshot-assertions": "^2.0"
  1119. },
  1120. "type": "library",
  1121. "extra": {
  1122. "branch-alias": {
  1123. "dev-master": "1.0-dev"
  1124. }
  1125. },
  1126. "autoload": {
  1127. "psr-4": {
  1128. "Facade\\FlareClient\\": "src"
  1129. },
  1130. "files": [
  1131. "src/helpers.php"
  1132. ]
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "description": "Send PHP errors to Flare",
  1139. "homepage": "https://github.com/facade/flare-client-php",
  1140. "keywords": [
  1141. "exception",
  1142. "facade",
  1143. "flare",
  1144. "reporting"
  1145. ],
  1146. "support": {
  1147. "issues": "https://github.com/facade/flare-client-php/issues",
  1148. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  1149. },
  1150. "funding": [
  1151. {
  1152. "url": "https://github.com/spatie",
  1153. "type": "github"
  1154. }
  1155. ],
  1156. "time": "2021-05-31T19:23:29+00:00"
  1157. },
  1158. {
  1159. "name": "facade/ignition",
  1160. "version": "2.10.2",
  1161. "source": {
  1162. "type": "git",
  1163. "url": "https://github.com/facade/ignition.git",
  1164. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4"
  1165. },
  1166. "dist": {
  1167. "type": "zip",
  1168. "url": "https://api.github.com/repos/facade/ignition/zipball/43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1169. "reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4",
  1170. "shasum": "",
  1171. "mirrors": [
  1172. {
  1173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1174. "preferred": true
  1175. }
  1176. ]
  1177. },
  1178. "require": {
  1179. "ext-json": "*",
  1180. "ext-mbstring": "*",
  1181. "facade/flare-client-php": "^1.6",
  1182. "facade/ignition-contracts": "^1.0.2",
  1183. "filp/whoops": "^2.4",
  1184. "illuminate/support": "^7.0|^8.0",
  1185. "monolog/monolog": "^2.0",
  1186. "php": "^7.2.5|^8.0",
  1187. "symfony/console": "^5.0",
  1188. "symfony/var-dumper": "^5.0"
  1189. },
  1190. "require-dev": {
  1191. "friendsofphp/php-cs-fixer": "^2.14",
  1192. "mockery/mockery": "^1.3",
  1193. "orchestra/testbench": "^5.0|^6.0",
  1194. "psalm/plugin-laravel": "^1.2"
  1195. },
  1196. "suggest": {
  1197. "laravel/telescope": "^3.1"
  1198. },
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-master": "2.x-dev"
  1203. },
  1204. "laravel": {
  1205. "providers": [
  1206. "Facade\\Ignition\\IgnitionServiceProvider"
  1207. ],
  1208. "aliases": {
  1209. "Flare": "Facade\\Ignition\\Facades\\Flare"
  1210. }
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Facade\\Ignition\\": "src"
  1216. },
  1217. "files": [
  1218. "src/helpers.php"
  1219. ]
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "description": "A beautiful error page for Laravel applications.",
  1226. "homepage": "https://github.com/facade/ignition",
  1227. "keywords": [
  1228. "error",
  1229. "flare",
  1230. "laravel",
  1231. "page"
  1232. ],
  1233. "support": {
  1234. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  1235. "forum": "https://twitter.com/flareappio",
  1236. "issues": "https://github.com/facade/ignition/issues",
  1237. "source": "https://github.com/facade/ignition"
  1238. },
  1239. "time": "2021-06-11T06:57:25+00:00"
  1240. },
  1241. {
  1242. "name": "facade/ignition-contracts",
  1243. "version": "1.0.2",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/facade/ignition-contracts.git",
  1247. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1252. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1253. "shasum": "",
  1254. "mirrors": [
  1255. {
  1256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1257. "preferred": true
  1258. }
  1259. ]
  1260. },
  1261. "require": {
  1262. "php": "^7.3|^8.0"
  1263. },
  1264. "require-dev": {
  1265. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1266. "phpunit/phpunit": "^9.3.11",
  1267. "vimeo/psalm": "^3.17.1"
  1268. },
  1269. "type": "library",
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Facade\\IgnitionContracts\\": "src"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Freek Van der Herten",
  1282. "email": "freek@spatie.be",
  1283. "homepage": "https://flareapp.io",
  1284. "role": "Developer"
  1285. }
  1286. ],
  1287. "description": "Solution contracts for Ignition",
  1288. "homepage": "https://github.com/facade/ignition-contracts",
  1289. "keywords": [
  1290. "contracts",
  1291. "flare",
  1292. "ignition"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/facade/ignition-contracts/issues",
  1296. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1297. },
  1298. "time": "2020-10-16T08:27:54+00:00"
  1299. },
  1300. {
  1301. "name": "fideloper/proxy",
  1302. "version": "4.4.1",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/fideloper/TrustedProxy.git",
  1306. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1311. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1312. "shasum": "",
  1313. "mirrors": [
  1314. {
  1315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1316. "preferred": true
  1317. }
  1318. ]
  1319. },
  1320. "require": {
  1321. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1322. "php": ">=5.4.0"
  1323. },
  1324. "require-dev": {
  1325. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1326. "mockery/mockery": "^1.0",
  1327. "phpunit/phpunit": "^6.0"
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "laravel": {
  1332. "providers": [
  1333. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1334. ]
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Fideloper\\Proxy\\": "src/"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Chris Fidao",
  1349. "email": "fideloper@gmail.com"
  1350. }
  1351. ],
  1352. "description": "Set trusted proxies for Laravel",
  1353. "keywords": [
  1354. "load balancing",
  1355. "proxy",
  1356. "trusted proxy"
  1357. ],
  1358. "support": {
  1359. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1360. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1361. },
  1362. "time": "2020-10-22T13:48:01+00:00"
  1363. },
  1364. {
  1365. "name": "filp/whoops",
  1366. "version": "2.13.0",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/filp/whoops.git",
  1370. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/filp/whoops/zipball/2edbc73a4687d9085c8f20f398eebade844e8424",
  1375. "reference": "2edbc73a4687d9085c8f20f398eebade844e8424",
  1376. "shasum": "",
  1377. "mirrors": [
  1378. {
  1379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1380. "preferred": true
  1381. }
  1382. ]
  1383. },
  1384. "require": {
  1385. "php": "^5.5.9 || ^7.0 || ^8.0",
  1386. "psr/log": "^1.0.1"
  1387. },
  1388. "require-dev": {
  1389. "mockery/mockery": "^0.9 || ^1.0",
  1390. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  1391. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  1392. },
  1393. "suggest": {
  1394. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  1395. "whoops/soap": "Formats errors as SOAP responses"
  1396. },
  1397. "type": "library",
  1398. "extra": {
  1399. "branch-alias": {
  1400. "dev-master": "2.7-dev"
  1401. }
  1402. },
  1403. "autoload": {
  1404. "psr-4": {
  1405. "Whoops\\": "src/Whoops/"
  1406. }
  1407. },
  1408. "notification-url": "https://packagist.org/downloads/",
  1409. "license": [
  1410. "MIT"
  1411. ],
  1412. "authors": [
  1413. {
  1414. "name": "Filipe Dobreira",
  1415. "homepage": "https://github.com/filp",
  1416. "role": "Developer"
  1417. }
  1418. ],
  1419. "description": "php error handling for cool kids",
  1420. "homepage": "https://filp.github.io/whoops/",
  1421. "keywords": [
  1422. "error",
  1423. "exception",
  1424. "handling",
  1425. "library",
  1426. "throwable",
  1427. "whoops"
  1428. ],
  1429. "support": {
  1430. "issues": "https://github.com/filp/whoops/issues",
  1431. "source": "https://github.com/filp/whoops/tree/2.13.0"
  1432. },
  1433. "funding": [
  1434. {
  1435. "url": "https://github.com/denis-sokolov",
  1436. "type": "github"
  1437. }
  1438. ],
  1439. "time": "2021-06-04T12:00:00+00:00"
  1440. },
  1441. {
  1442. "name": "firebase/php-jwt",
  1443. "version": "v5.3.0",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/firebase/php-jwt.git",
  1447. "reference": "3c2d70f2e64e2922345e89f2ceae47d2463faae1"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/3c2d70f2e64e2922345e89f2ceae47d2463faae1",
  1452. "reference": "3c2d70f2e64e2922345e89f2ceae47d2463faae1",
  1453. "shasum": "",
  1454. "mirrors": [
  1455. {
  1456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1457. "preferred": true
  1458. }
  1459. ]
  1460. },
  1461. "require": {
  1462. "php": ">=5.3.0"
  1463. },
  1464. "require-dev": {
  1465. "phpunit/phpunit": ">=4.8 <=9"
  1466. },
  1467. "type": "library",
  1468. "autoload": {
  1469. "psr-4": {
  1470. "Firebase\\JWT\\": "src"
  1471. }
  1472. },
  1473. "notification-url": "https://packagist.org/downloads/",
  1474. "license": [
  1475. "BSD-3-Clause"
  1476. ],
  1477. "authors": [
  1478. {
  1479. "name": "Neuman Vong",
  1480. "email": "neuman+pear@twilio.com",
  1481. "role": "Developer"
  1482. },
  1483. {
  1484. "name": "Anant Narayanan",
  1485. "email": "anant@php.net",
  1486. "role": "Developer"
  1487. }
  1488. ],
  1489. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1490. "homepage": "https://github.com/firebase/php-jwt",
  1491. "keywords": [
  1492. "jwt",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "issues": "https://github.com/firebase/php-jwt/issues",
  1497. "source": "https://github.com/firebase/php-jwt/tree/v5.3.0"
  1498. },
  1499. "time": "2021-05-20T17:37:02+00:00"
  1500. },
  1501. {
  1502. "name": "guzzlehttp/guzzle",
  1503. "version": "6.5.5",
  1504. "source": {
  1505. "type": "git",
  1506. "url": "https://github.com/guzzle/guzzle.git",
  1507. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1508. },
  1509. "dist": {
  1510. "type": "zip",
  1511. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1512. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1513. "shasum": "",
  1514. "mirrors": [
  1515. {
  1516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1517. "preferred": true
  1518. }
  1519. ]
  1520. },
  1521. "require": {
  1522. "ext-json": "*",
  1523. "guzzlehttp/promises": "^1.0",
  1524. "guzzlehttp/psr7": "^1.6.1",
  1525. "php": ">=5.5",
  1526. "symfony/polyfill-intl-idn": "^1.17.0"
  1527. },
  1528. "require-dev": {
  1529. "ext-curl": "*",
  1530. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1531. "psr/log": "^1.1"
  1532. },
  1533. "suggest": {
  1534. "psr/log": "Required for using the Log middleware"
  1535. },
  1536. "type": "library",
  1537. "extra": {
  1538. "branch-alias": {
  1539. "dev-master": "6.5-dev"
  1540. }
  1541. },
  1542. "autoload": {
  1543. "psr-4": {
  1544. "GuzzleHttp\\": "src/"
  1545. },
  1546. "files": [
  1547. "src/functions_include.php"
  1548. ]
  1549. },
  1550. "notification-url": "https://packagist.org/downloads/",
  1551. "license": [
  1552. "MIT"
  1553. ],
  1554. "authors": [
  1555. {
  1556. "name": "Michael Dowling",
  1557. "email": "mtdowling@gmail.com",
  1558. "homepage": "https://github.com/mtdowling"
  1559. }
  1560. ],
  1561. "description": "Guzzle is a PHP HTTP client library",
  1562. "homepage": "http://guzzlephp.org/",
  1563. "keywords": [
  1564. "client",
  1565. "curl",
  1566. "framework",
  1567. "http",
  1568. "http client",
  1569. "rest",
  1570. "web service"
  1571. ],
  1572. "support": {
  1573. "issues": "https://github.com/guzzle/guzzle/issues",
  1574. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  1575. },
  1576. "time": "2020-06-16T21:01:06+00:00"
  1577. },
  1578. {
  1579. "name": "guzzlehttp/promises",
  1580. "version": "1.4.1",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/guzzle/promises.git",
  1584. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1589. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "php": ">=5.5"
  1600. },
  1601. "require-dev": {
  1602. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1603. },
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "1.4-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "GuzzleHttp\\Promise\\": "src/"
  1613. },
  1614. "files": [
  1615. "src/functions_include.php"
  1616. ]
  1617. },
  1618. "notification-url": "https://packagist.org/downloads/",
  1619. "license": [
  1620. "MIT"
  1621. ],
  1622. "authors": [
  1623. {
  1624. "name": "Michael Dowling",
  1625. "email": "mtdowling@gmail.com",
  1626. "homepage": "https://github.com/mtdowling"
  1627. }
  1628. ],
  1629. "description": "Guzzle promises library",
  1630. "keywords": [
  1631. "promise"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/guzzle/promises/issues",
  1635. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1636. },
  1637. "time": "2021-03-07T09:25:29+00:00"
  1638. },
  1639. {
  1640. "name": "guzzlehttp/psr7",
  1641. "version": "1.8.2",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/guzzle/psr7.git",
  1645. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1650. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1651. "shasum": "",
  1652. "mirrors": [
  1653. {
  1654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1655. "preferred": true
  1656. }
  1657. ]
  1658. },
  1659. "require": {
  1660. "php": ">=5.4.0",
  1661. "psr/http-message": "~1.0",
  1662. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1663. },
  1664. "provide": {
  1665. "psr/http-message-implementation": "1.0"
  1666. },
  1667. "require-dev": {
  1668. "ext-zlib": "*",
  1669. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1670. },
  1671. "suggest": {
  1672. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1673. },
  1674. "type": "library",
  1675. "extra": {
  1676. "branch-alias": {
  1677. "dev-master": "1.7-dev"
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "GuzzleHttp\\Psr7\\": "src/"
  1683. },
  1684. "files": [
  1685. "src/functions_include.php"
  1686. ]
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Michael Dowling",
  1695. "email": "mtdowling@gmail.com",
  1696. "homepage": "https://github.com/mtdowling"
  1697. },
  1698. {
  1699. "name": "Tobias Schultze",
  1700. "homepage": "https://github.com/Tobion"
  1701. }
  1702. ],
  1703. "description": "PSR-7 message implementation that also provides common utility methods",
  1704. "keywords": [
  1705. "http",
  1706. "message",
  1707. "psr-7",
  1708. "request",
  1709. "response",
  1710. "stream",
  1711. "uri",
  1712. "url"
  1713. ],
  1714. "support": {
  1715. "issues": "https://github.com/guzzle/psr7/issues",
  1716. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1717. },
  1718. "time": "2021-04-26T09:17:50+00:00"
  1719. },
  1720. {
  1721. "name": "intervention/image",
  1722. "version": "2.5.1",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/Intervention/image.git",
  1726. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1731. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  1732. "shasum": "",
  1733. "mirrors": [
  1734. {
  1735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1736. "preferred": true
  1737. }
  1738. ]
  1739. },
  1740. "require": {
  1741. "ext-fileinfo": "*",
  1742. "guzzlehttp/psr7": "~1.1",
  1743. "php": ">=5.4.0"
  1744. },
  1745. "require-dev": {
  1746. "mockery/mockery": "~0.9.2",
  1747. "phpunit/phpunit": "^4.8 || ^5.7"
  1748. },
  1749. "suggest": {
  1750. "ext-gd": "to use GD library based image processing.",
  1751. "ext-imagick": "to use Imagick based image processing.",
  1752. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "2.4-dev"
  1758. },
  1759. "laravel": {
  1760. "providers": [
  1761. "Intervention\\Image\\ImageServiceProvider"
  1762. ],
  1763. "aliases": {
  1764. "Image": "Intervention\\Image\\Facades\\Image"
  1765. }
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Intervention\\Image\\": "src/Intervention/Image"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Oliver Vogel",
  1780. "email": "oliver@olivervogel.com",
  1781. "homepage": "http://olivervogel.com/"
  1782. }
  1783. ],
  1784. "description": "Image handling and manipulation library with support for Laravel integration",
  1785. "homepage": "http://image.intervention.io/",
  1786. "keywords": [
  1787. "gd",
  1788. "image",
  1789. "imagick",
  1790. "laravel",
  1791. "thumbnail",
  1792. "watermark"
  1793. ],
  1794. "support": {
  1795. "issues": "https://github.com/Intervention/image/issues",
  1796. "source": "https://github.com/Intervention/image/tree/master"
  1797. },
  1798. "time": "2019-11-02T09:15:47+00:00"
  1799. },
  1800. {
  1801. "name": "khanamiryan/qrcode-detector-decoder",
  1802. "version": "1.0.5.1",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1806. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1811. "reference": "b96163d4f074970dfe67d4185e75e1f4541b30ca",
  1812. "shasum": "",
  1813. "mirrors": [
  1814. {
  1815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1816. "preferred": true
  1817. }
  1818. ]
  1819. },
  1820. "require": {
  1821. "php": ">=5.6"
  1822. },
  1823. "require-dev": {
  1824. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1825. },
  1826. "type": "library",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Zxing\\": "lib/"
  1830. },
  1831. "files": [
  1832. "lib/Common/customFunctions.php"
  1833. ]
  1834. },
  1835. "notification-url": "https://packagist.org/downloads/",
  1836. "license": [
  1837. "MIT",
  1838. "Apache-2.0"
  1839. ],
  1840. "authors": [
  1841. {
  1842. "name": "Ashot Khanamiryan",
  1843. "email": "a.khanamiryan@gmail.com",
  1844. "homepage": "https://github.com/khanamiryan",
  1845. "role": "Developer"
  1846. }
  1847. ],
  1848. "description": "QR code decoder / reader",
  1849. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1850. "keywords": [
  1851. "barcode",
  1852. "qr",
  1853. "zxing"
  1854. ],
  1855. "support": {
  1856. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1857. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.1"
  1858. },
  1859. "time": "2021-04-21T08:02:08+00:00"
  1860. },
  1861. {
  1862. "name": "kitetail/zttp",
  1863. "version": "v0.6.0",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/kitetail/zttp.git",
  1867. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/kitetail/zttp/zipball/92662d7f9025b4c9a0b8a585e31810461fcca435",
  1872. "reference": "92662d7f9025b4c9a0b8a585e31810461fcca435",
  1873. "shasum": "",
  1874. "mirrors": [
  1875. {
  1876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1877. "preferred": true
  1878. }
  1879. ]
  1880. },
  1881. "require": {
  1882. "guzzlehttp/guzzle": "^6.0",
  1883. "php": ">=7.0",
  1884. "tightenco/collect": "^5.4"
  1885. },
  1886. "require-dev": {
  1887. "laravel/lumen-framework": "5.5.*",
  1888. "phpunit/phpunit": "^6.0"
  1889. },
  1890. "type": "library",
  1891. "autoload": {
  1892. "files": [
  1893. "src/Zttp.php"
  1894. ]
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Adam Wathan",
  1903. "email": "adam.wathan@gmail.com"
  1904. }
  1905. ],
  1906. "description": "A developer-experience focused HTTP client, optimized for most common use cases.",
  1907. "keywords": [
  1908. "Guzzle",
  1909. "http"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/kitetail/zttp/issues",
  1913. "source": "https://github.com/kitetail/zttp/tree/master"
  1914. },
  1915. "time": "2019-06-10T12:18:52+00:00"
  1916. },
  1917. {
  1918. "name": "laravel/framework",
  1919. "version": "v7.30.4",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/laravel/framework.git",
  1923. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/laravel/framework/zipball/9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1928. "reference": "9dd38140dc2924daa1a020a3d7a45f9ceff03df3",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "doctrine/inflector": "^1.4|^2.0",
  1939. "dragonmantank/cron-expression": "^2.3.1",
  1940. "egulias/email-validator": "^2.1.10",
  1941. "ext-json": "*",
  1942. "ext-mbstring": "*",
  1943. "ext-openssl": "*",
  1944. "league/commonmark": "^1.3",
  1945. "league/flysystem": "^1.1",
  1946. "monolog/monolog": "^2.0",
  1947. "nesbot/carbon": "^2.31",
  1948. "opis/closure": "^3.6",
  1949. "php": "^7.2.5|^8.0",
  1950. "psr/container": "^1.0",
  1951. "psr/simple-cache": "^1.0",
  1952. "ramsey/uuid": "^3.7|^4.0",
  1953. "swiftmailer/swiftmailer": "^6.0",
  1954. "symfony/console": "^5.0",
  1955. "symfony/error-handler": "^5.0",
  1956. "symfony/finder": "^5.0",
  1957. "symfony/http-foundation": "^5.0",
  1958. "symfony/http-kernel": "^5.0",
  1959. "symfony/mime": "^5.0",
  1960. "symfony/polyfill-php73": "^1.17",
  1961. "symfony/process": "^5.0",
  1962. "symfony/routing": "^5.0",
  1963. "symfony/var-dumper": "^5.0",
  1964. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1965. "vlucas/phpdotenv": "^4.0",
  1966. "voku/portable-ascii": "^1.4.8"
  1967. },
  1968. "conflict": {
  1969. "tightenco/collect": "<5.5.33"
  1970. },
  1971. "provide": {
  1972. "psr/container-implementation": "1.0"
  1973. },
  1974. "replace": {
  1975. "illuminate/auth": "self.version",
  1976. "illuminate/broadcasting": "self.version",
  1977. "illuminate/bus": "self.version",
  1978. "illuminate/cache": "self.version",
  1979. "illuminate/config": "self.version",
  1980. "illuminate/console": "self.version",
  1981. "illuminate/container": "self.version",
  1982. "illuminate/contracts": "self.version",
  1983. "illuminate/cookie": "self.version",
  1984. "illuminate/database": "self.version",
  1985. "illuminate/encryption": "self.version",
  1986. "illuminate/events": "self.version",
  1987. "illuminate/filesystem": "self.version",
  1988. "illuminate/hashing": "self.version",
  1989. "illuminate/http": "self.version",
  1990. "illuminate/log": "self.version",
  1991. "illuminate/mail": "self.version",
  1992. "illuminate/notifications": "self.version",
  1993. "illuminate/pagination": "self.version",
  1994. "illuminate/pipeline": "self.version",
  1995. "illuminate/queue": "self.version",
  1996. "illuminate/redis": "self.version",
  1997. "illuminate/routing": "self.version",
  1998. "illuminate/session": "self.version",
  1999. "illuminate/support": "self.version",
  2000. "illuminate/testing": "self.version",
  2001. "illuminate/translation": "self.version",
  2002. "illuminate/validation": "self.version",
  2003. "illuminate/view": "self.version"
  2004. },
  2005. "require-dev": {
  2006. "aws/aws-sdk-php": "^3.155",
  2007. "doctrine/dbal": "^2.6",
  2008. "filp/whoops": "^2.8",
  2009. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2010. "league/flysystem-cached-adapter": "^1.0",
  2011. "mockery/mockery": "~1.3.3|^1.4.2",
  2012. "moontoast/math": "^1.1",
  2013. "orchestra/testbench-core": "^5.8",
  2014. "pda/pheanstalk": "^4.0",
  2015. "phpunit/phpunit": "^8.4|^9.3.3",
  2016. "predis/predis": "^1.1.1",
  2017. "symfony/cache": "^5.0"
  2018. },
  2019. "suggest": {
  2020. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2021. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2022. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2023. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2024. "ext-memcached": "Required to use the memcache cache driver.",
  2025. "ext-pcntl": "Required to use all features of the queue worker.",
  2026. "ext-posix": "Required to use all features of the queue worker.",
  2027. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2028. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2029. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2030. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2031. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2032. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2033. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2034. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2035. "mockery/mockery": "Required to use mocking (~1.3.3|^1.4.2).",
  2036. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2037. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2038. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2039. "phpunit/phpunit": "Required to use assertions and run tests (^8.4|^9.3.3).",
  2040. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2041. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2042. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2043. "symfony/cache": "Required to PSR-6 cache bridge (^5.0).",
  2044. "symfony/filesystem": "Required to create relative storage directory symbolic links (^5.0).",
  2045. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2046. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2047. },
  2048. "type": "library",
  2049. "extra": {
  2050. "branch-alias": {
  2051. "dev-master": "7.x-dev"
  2052. }
  2053. },
  2054. "autoload": {
  2055. "files": [
  2056. "src/Illuminate/Foundation/helpers.php",
  2057. "src/Illuminate/Support/helpers.php"
  2058. ],
  2059. "psr-4": {
  2060. "Illuminate\\": "src/Illuminate/"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Taylor Otwell",
  2070. "email": "taylor@laravel.com"
  2071. }
  2072. ],
  2073. "description": "The Laravel Framework.",
  2074. "homepage": "https://laravel.com",
  2075. "keywords": [
  2076. "framework",
  2077. "laravel"
  2078. ],
  2079. "support": {
  2080. "issues": "https://github.com/laravel/framework/issues",
  2081. "source": "https://github.com/laravel/framework"
  2082. },
  2083. "time": "2021-01-21T14:10:48+00:00"
  2084. },
  2085. {
  2086. "name": "laravel/horizon",
  2087. "version": "v4.3.5",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/laravel/horizon.git",
  2091. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/laravel/horizon/zipball/b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2096. "reference": "b3fba0daaaaf5e84197b06dd25f3b27bb7301171",
  2097. "shasum": "",
  2098. "mirrors": [
  2099. {
  2100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2101. "preferred": true
  2102. }
  2103. ]
  2104. },
  2105. "require": {
  2106. "cakephp/chronos": "^2.0",
  2107. "ext-json": "*",
  2108. "ext-pcntl": "*",
  2109. "ext-posix": "*",
  2110. "illuminate/contracts": "^7.0",
  2111. "illuminate/queue": "^7.0",
  2112. "illuminate/support": "^7.0",
  2113. "php": "^7.2",
  2114. "ramsey/uuid": "^3.5|^4.0",
  2115. "symfony/error-handler": "^5.0",
  2116. "symfony/process": "^5.0"
  2117. },
  2118. "require-dev": {
  2119. "mockery/mockery": "^1.0",
  2120. "orchestra/testbench": "^5.0",
  2121. "phpunit/phpunit": "^8.0",
  2122. "predis/predis": "^1.1"
  2123. },
  2124. "suggest": {
  2125. "ext-redis": "Required to use the Redis PHP driver.",
  2126. "predis/predis": "Required when not using the Redis PHP driver (^1.1)."
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-master": "4.x-dev"
  2132. },
  2133. "laravel": {
  2134. "providers": [
  2135. "Laravel\\Horizon\\HorizonServiceProvider"
  2136. ],
  2137. "aliases": {
  2138. "Horizon": "Laravel\\Horizon\\Horizon"
  2139. }
  2140. }
  2141. },
  2142. "autoload": {
  2143. "psr-4": {
  2144. "Laravel\\Horizon\\": "src/"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "authors": [
  2152. {
  2153. "name": "Taylor Otwell",
  2154. "email": "taylor@laravel.com"
  2155. }
  2156. ],
  2157. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2158. "keywords": [
  2159. "laravel",
  2160. "queue"
  2161. ],
  2162. "support": {
  2163. "issues": "https://github.com/laravel/horizon/issues",
  2164. "source": "https://github.com/laravel/horizon/tree/4.x"
  2165. },
  2166. "time": "2020-09-08T13:19:23+00:00"
  2167. },
  2168. {
  2169. "name": "laravel/tinker",
  2170. "version": "v2.6.1",
  2171. "source": {
  2172. "type": "git",
  2173. "url": "https://github.com/laravel/tinker.git",
  2174. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2175. },
  2176. "dist": {
  2177. "type": "zip",
  2178. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2179. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2180. "shasum": "",
  2181. "mirrors": [
  2182. {
  2183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2184. "preferred": true
  2185. }
  2186. ]
  2187. },
  2188. "require": {
  2189. "illuminate/console": "^6.0|^7.0|^8.0",
  2190. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2191. "illuminate/support": "^6.0|^7.0|^8.0",
  2192. "php": "^7.2.5|^8.0",
  2193. "psy/psysh": "^0.10.4",
  2194. "symfony/var-dumper": "^4.3.4|^5.0"
  2195. },
  2196. "require-dev": {
  2197. "mockery/mockery": "~1.3.3|^1.4.2",
  2198. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2199. },
  2200. "suggest": {
  2201. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2202. },
  2203. "type": "library",
  2204. "extra": {
  2205. "branch-alias": {
  2206. "dev-master": "2.x-dev"
  2207. },
  2208. "laravel": {
  2209. "providers": [
  2210. "Laravel\\Tinker\\TinkerServiceProvider"
  2211. ]
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-4": {
  2216. "Laravel\\Tinker\\": "src/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "MIT"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Taylor Otwell",
  2226. "email": "taylor@laravel.com"
  2227. }
  2228. ],
  2229. "description": "Powerful REPL for the Laravel framework.",
  2230. "keywords": [
  2231. "REPL",
  2232. "Tinker",
  2233. "laravel",
  2234. "psysh"
  2235. ],
  2236. "support": {
  2237. "issues": "https://github.com/laravel/tinker/issues",
  2238. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2239. },
  2240. "time": "2021-03-02T16:53:12+00:00"
  2241. },
  2242. {
  2243. "name": "laravel/ui",
  2244. "version": "v2.5.0",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/laravel/ui.git",
  2248. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/laravel/ui/zipball/d01a705763c243b07be795e9d1bb47f89260f73d",
  2253. "reference": "d01a705763c243b07be795e9d1bb47f89260f73d",
  2254. "shasum": "",
  2255. "mirrors": [
  2256. {
  2257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2258. "preferred": true
  2259. }
  2260. ]
  2261. },
  2262. "require": {
  2263. "illuminate/console": "^7.0",
  2264. "illuminate/filesystem": "^7.0",
  2265. "illuminate/support": "^7.0",
  2266. "php": "^7.2.5|^8.0"
  2267. },
  2268. "type": "library",
  2269. "extra": {
  2270. "laravel": {
  2271. "providers": [
  2272. "Laravel\\Ui\\UiServiceProvider"
  2273. ]
  2274. }
  2275. },
  2276. "autoload": {
  2277. "psr-4": {
  2278. "Laravel\\Ui\\": "src/",
  2279. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  2280. }
  2281. },
  2282. "notification-url": "https://packagist.org/downloads/",
  2283. "license": [
  2284. "MIT"
  2285. ],
  2286. "authors": [
  2287. {
  2288. "name": "Taylor Otwell",
  2289. "email": "taylor@laravel.com"
  2290. }
  2291. ],
  2292. "description": "Laravel UI utilities and presets.",
  2293. "keywords": [
  2294. "laravel",
  2295. "ui"
  2296. ],
  2297. "support": {
  2298. "issues": "https://github.com/laravel/ui/issues",
  2299. "source": "https://github.com/laravel/ui/tree/v2.5.0"
  2300. },
  2301. "time": "2020-11-03T19:45:19+00:00"
  2302. },
  2303. {
  2304. "name": "league/commonmark",
  2305. "version": "1.6.4",
  2306. "source": {
  2307. "type": "git",
  2308. "url": "https://github.com/thephpleague/commonmark.git",
  2309. "reference": "c3c8b7217c52572fb42aaf84211abccf75a151b2"
  2310. },
  2311. "dist": {
  2312. "type": "zip",
  2313. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c3c8b7217c52572fb42aaf84211abccf75a151b2",
  2314. "reference": "c3c8b7217c52572fb42aaf84211abccf75a151b2",
  2315. "shasum": "",
  2316. "mirrors": [
  2317. {
  2318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2319. "preferred": true
  2320. }
  2321. ]
  2322. },
  2323. "require": {
  2324. "ext-mbstring": "*",
  2325. "php": "^7.1 || ^8.0"
  2326. },
  2327. "conflict": {
  2328. "scrutinizer/ocular": "1.7.*"
  2329. },
  2330. "require-dev": {
  2331. "cebe/markdown": "~1.0",
  2332. "commonmark/commonmark.js": "0.29.2",
  2333. "erusev/parsedown": "~1.0",
  2334. "ext-json": "*",
  2335. "github/gfm": "0.29.0",
  2336. "michelf/php-markdown": "~1.4",
  2337. "mikehaertl/php-shellcommand": "^1.4",
  2338. "phpstan/phpstan": "^0.12.90",
  2339. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2340. "scrutinizer/ocular": "^1.5",
  2341. "symfony/finder": "^4.2"
  2342. },
  2343. "bin": [
  2344. "bin/commonmark"
  2345. ],
  2346. "type": "library",
  2347. "autoload": {
  2348. "psr-4": {
  2349. "League\\CommonMark\\": "src"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "BSD-3-Clause"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Colin O'Dell",
  2359. "email": "colinodell@gmail.com",
  2360. "homepage": "https://www.colinodell.com",
  2361. "role": "Lead Developer"
  2362. }
  2363. ],
  2364. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2365. "homepage": "https://commonmark.thephpleague.com",
  2366. "keywords": [
  2367. "commonmark",
  2368. "flavored",
  2369. "gfm",
  2370. "github",
  2371. "github-flavored",
  2372. "markdown",
  2373. "md",
  2374. "parser"
  2375. ],
  2376. "support": {
  2377. "docs": "https://commonmark.thephpleague.com/",
  2378. "issues": "https://github.com/thephpleague/commonmark/issues",
  2379. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2380. "source": "https://github.com/thephpleague/commonmark"
  2381. },
  2382. "funding": [
  2383. {
  2384. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2385. "type": "custom"
  2386. },
  2387. {
  2388. "url": "https://www.colinodell.com/sponsor",
  2389. "type": "custom"
  2390. },
  2391. {
  2392. "url": "https://www.paypal.me/colinpodell/10.00",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://github.com/colinodell",
  2397. "type": "github"
  2398. },
  2399. {
  2400. "url": "https://www.patreon.com/colinodell",
  2401. "type": "patreon"
  2402. },
  2403. {
  2404. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2405. "type": "tidelift"
  2406. }
  2407. ],
  2408. "time": "2021-06-19T20:08:14+00:00"
  2409. },
  2410. {
  2411. "name": "league/flysystem",
  2412. "version": "1.1.3",
  2413. "source": {
  2414. "type": "git",
  2415. "url": "https://github.com/thephpleague/flysystem.git",
  2416. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  2417. },
  2418. "dist": {
  2419. "type": "zip",
  2420. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  2421. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  2422. "shasum": "",
  2423. "mirrors": [
  2424. {
  2425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2426. "preferred": true
  2427. }
  2428. ]
  2429. },
  2430. "require": {
  2431. "ext-fileinfo": "*",
  2432. "league/mime-type-detection": "^1.3",
  2433. "php": "^7.2.5 || ^8.0"
  2434. },
  2435. "conflict": {
  2436. "league/flysystem-sftp": "<1.0.6"
  2437. },
  2438. "require-dev": {
  2439. "phpspec/prophecy": "^1.11.1",
  2440. "phpunit/phpunit": "^8.5.8"
  2441. },
  2442. "suggest": {
  2443. "ext-fileinfo": "Required for MimeType",
  2444. "ext-ftp": "Allows you to use FTP server storage",
  2445. "ext-openssl": "Allows you to use FTPS server storage",
  2446. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2447. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2448. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2449. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2450. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2451. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2452. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2453. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2454. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2455. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2456. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-master": "1.1-dev"
  2462. }
  2463. },
  2464. "autoload": {
  2465. "psr-4": {
  2466. "League\\Flysystem\\": "src/"
  2467. }
  2468. },
  2469. "notification-url": "https://packagist.org/downloads/",
  2470. "license": [
  2471. "MIT"
  2472. ],
  2473. "authors": [
  2474. {
  2475. "name": "Frank de Jonge",
  2476. "email": "info@frenky.net"
  2477. }
  2478. ],
  2479. "description": "Filesystem abstraction: Many filesystems, one API.",
  2480. "keywords": [
  2481. "Cloud Files",
  2482. "WebDAV",
  2483. "abstraction",
  2484. "aws",
  2485. "cloud",
  2486. "copy.com",
  2487. "dropbox",
  2488. "file systems",
  2489. "files",
  2490. "filesystem",
  2491. "filesystems",
  2492. "ftp",
  2493. "rackspace",
  2494. "remote",
  2495. "s3",
  2496. "sftp",
  2497. "storage"
  2498. ],
  2499. "support": {
  2500. "issues": "https://github.com/thephpleague/flysystem/issues",
  2501. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  2502. },
  2503. "funding": [
  2504. {
  2505. "url": "https://offset.earth/frankdejonge",
  2506. "type": "other"
  2507. }
  2508. ],
  2509. "time": "2020-08-23T07:39:11+00:00"
  2510. },
  2511. {
  2512. "name": "league/mime-type-detection",
  2513. "version": "1.7.0",
  2514. "source": {
  2515. "type": "git",
  2516. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2517. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2518. },
  2519. "dist": {
  2520. "type": "zip",
  2521. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2522. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2523. "shasum": "",
  2524. "mirrors": [
  2525. {
  2526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2527. "preferred": true
  2528. }
  2529. ]
  2530. },
  2531. "require": {
  2532. "ext-fileinfo": "*",
  2533. "php": "^7.2 || ^8.0"
  2534. },
  2535. "require-dev": {
  2536. "friendsofphp/php-cs-fixer": "^2.18",
  2537. "phpstan/phpstan": "^0.12.68",
  2538. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2539. },
  2540. "type": "library",
  2541. "autoload": {
  2542. "psr-4": {
  2543. "League\\MimeTypeDetection\\": "src"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Frank de Jonge",
  2553. "email": "info@frankdejonge.nl"
  2554. }
  2555. ],
  2556. "description": "Mime-type detection for Flysystem",
  2557. "support": {
  2558. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2559. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  2560. },
  2561. "funding": [
  2562. {
  2563. "url": "https://github.com/frankdejonge",
  2564. "type": "github"
  2565. },
  2566. {
  2567. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2568. "type": "tidelift"
  2569. }
  2570. ],
  2571. "time": "2021-01-18T20:58:21+00:00"
  2572. },
  2573. {
  2574. "name": "maatwebsite/excel",
  2575. "version": "3.1.31",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  2579. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2584. "reference": "cbe6370af70f93bd017f77ef92d32bd492a47fcb",
  2585. "shasum": "",
  2586. "mirrors": [
  2587. {
  2588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2589. "preferred": true
  2590. }
  2591. ]
  2592. },
  2593. "require": {
  2594. "ext-json": "*",
  2595. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0",
  2596. "php": "^7.0|^8.0",
  2597. "phpoffice/phpspreadsheet": "^1.18"
  2598. },
  2599. "require-dev": {
  2600. "orchestra/testbench": "^6.0",
  2601. "predis/predis": "^1.1"
  2602. },
  2603. "type": "library",
  2604. "extra": {
  2605. "laravel": {
  2606. "providers": [
  2607. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2608. ],
  2609. "aliases": {
  2610. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2611. }
  2612. }
  2613. },
  2614. "autoload": {
  2615. "psr-4": {
  2616. "Maatwebsite\\Excel\\": "src/"
  2617. }
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "Patrick Brouwers",
  2626. "email": "patrick@maatwebsite.nl"
  2627. }
  2628. ],
  2629. "description": "Supercharged Excel exports and imports in Laravel",
  2630. "keywords": [
  2631. "PHPExcel",
  2632. "batch",
  2633. "csv",
  2634. "excel",
  2635. "export",
  2636. "import",
  2637. "laravel",
  2638. "php",
  2639. "phpspreadsheet"
  2640. ],
  2641. "support": {
  2642. "issues": "https://github.com/Maatwebsite/Laravel-Excel/issues",
  2643. "source": "https://github.com/Maatwebsite/Laravel-Excel/tree/3.1.31"
  2644. },
  2645. "funding": [
  2646. {
  2647. "url": "https://laravel-excel.com/commercial-support",
  2648. "type": "custom"
  2649. },
  2650. {
  2651. "url": "https://github.com/patrickbrouwers",
  2652. "type": "github"
  2653. }
  2654. ],
  2655. "time": "2021-06-02T17:31:29+00:00"
  2656. },
  2657. {
  2658. "name": "maennchen/zipstream-php",
  2659. "version": "2.1.0",
  2660. "source": {
  2661. "type": "git",
  2662. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2663. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2664. },
  2665. "dist": {
  2666. "type": "zip",
  2667. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2668. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2669. "shasum": "",
  2670. "mirrors": [
  2671. {
  2672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2673. "preferred": true
  2674. }
  2675. ]
  2676. },
  2677. "require": {
  2678. "myclabs/php-enum": "^1.5",
  2679. "php": ">= 7.1",
  2680. "psr/http-message": "^1.0",
  2681. "symfony/polyfill-mbstring": "^1.0"
  2682. },
  2683. "require-dev": {
  2684. "ext-zip": "*",
  2685. "guzzlehttp/guzzle": ">= 6.3",
  2686. "mikey179/vfsstream": "^1.6",
  2687. "phpunit/phpunit": ">= 7.5"
  2688. },
  2689. "type": "library",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "ZipStream\\": "src/"
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Paul Duncan",
  2702. "email": "pabs@pablotron.org"
  2703. },
  2704. {
  2705. "name": "Jonatan Männchen",
  2706. "email": "jonatan@maennchen.ch"
  2707. },
  2708. {
  2709. "name": "Jesse Donat",
  2710. "email": "donatj@gmail.com"
  2711. },
  2712. {
  2713. "name": "András Kolesár",
  2714. "email": "kolesar@kolesar.hu"
  2715. }
  2716. ],
  2717. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2718. "keywords": [
  2719. "stream",
  2720. "zip"
  2721. ],
  2722. "support": {
  2723. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2724. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2725. },
  2726. "funding": [
  2727. {
  2728. "url": "https://opencollective.com/zipstream",
  2729. "type": "open_collective"
  2730. }
  2731. ],
  2732. "time": "2020-05-30T13:11:16+00:00"
  2733. },
  2734. {
  2735. "name": "markbaker/complex",
  2736. "version": "2.0.3",
  2737. "source": {
  2738. "type": "git",
  2739. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2740. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  2741. },
  2742. "dist": {
  2743. "type": "zip",
  2744. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2745. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  2746. "shasum": "",
  2747. "mirrors": [
  2748. {
  2749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2750. "preferred": true
  2751. }
  2752. ]
  2753. },
  2754. "require": {
  2755. "php": "^7.2 || ^8.0"
  2756. },
  2757. "require-dev": {
  2758. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2759. "phpcompatibility/php-compatibility": "^9.0",
  2760. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2761. "squizlabs/php_codesniffer": "^3.4"
  2762. },
  2763. "type": "library",
  2764. "autoload": {
  2765. "psr-4": {
  2766. "Complex\\": "classes/src/"
  2767. },
  2768. "files": [
  2769. "classes/src/functions/abs.php",
  2770. "classes/src/functions/acos.php",
  2771. "classes/src/functions/acosh.php",
  2772. "classes/src/functions/acot.php",
  2773. "classes/src/functions/acoth.php",
  2774. "classes/src/functions/acsc.php",
  2775. "classes/src/functions/acsch.php",
  2776. "classes/src/functions/argument.php",
  2777. "classes/src/functions/asec.php",
  2778. "classes/src/functions/asech.php",
  2779. "classes/src/functions/asin.php",
  2780. "classes/src/functions/asinh.php",
  2781. "classes/src/functions/atan.php",
  2782. "classes/src/functions/atanh.php",
  2783. "classes/src/functions/conjugate.php",
  2784. "classes/src/functions/cos.php",
  2785. "classes/src/functions/cosh.php",
  2786. "classes/src/functions/cot.php",
  2787. "classes/src/functions/coth.php",
  2788. "classes/src/functions/csc.php",
  2789. "classes/src/functions/csch.php",
  2790. "classes/src/functions/exp.php",
  2791. "classes/src/functions/inverse.php",
  2792. "classes/src/functions/ln.php",
  2793. "classes/src/functions/log2.php",
  2794. "classes/src/functions/log10.php",
  2795. "classes/src/functions/negative.php",
  2796. "classes/src/functions/pow.php",
  2797. "classes/src/functions/rho.php",
  2798. "classes/src/functions/sec.php",
  2799. "classes/src/functions/sech.php",
  2800. "classes/src/functions/sin.php",
  2801. "classes/src/functions/sinh.php",
  2802. "classes/src/functions/sqrt.php",
  2803. "classes/src/functions/tan.php",
  2804. "classes/src/functions/tanh.php",
  2805. "classes/src/functions/theta.php",
  2806. "classes/src/operations/add.php",
  2807. "classes/src/operations/subtract.php",
  2808. "classes/src/operations/multiply.php",
  2809. "classes/src/operations/divideby.php",
  2810. "classes/src/operations/divideinto.php"
  2811. ]
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "Mark Baker",
  2820. "email": "mark@lange.demon.co.uk"
  2821. }
  2822. ],
  2823. "description": "PHP Class for working with complex numbers",
  2824. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2825. "keywords": [
  2826. "complex",
  2827. "mathematics"
  2828. ],
  2829. "support": {
  2830. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2831. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  2832. },
  2833. "time": "2021-06-02T09:44:11+00:00"
  2834. },
  2835. {
  2836. "name": "markbaker/matrix",
  2837. "version": "2.1.3",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2841. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  2846. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  2847. "shasum": "",
  2848. "mirrors": [
  2849. {
  2850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2851. "preferred": true
  2852. }
  2853. ]
  2854. },
  2855. "require": {
  2856. "php": "^7.1 || ^8.0"
  2857. },
  2858. "require-dev": {
  2859. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2860. "phpcompatibility/php-compatibility": "^9.0",
  2861. "phpdocumentor/phpdocumentor": "2.*",
  2862. "phploc/phploc": "^4.0",
  2863. "phpmd/phpmd": "2.*",
  2864. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2865. "sebastian/phpcpd": "^4.0",
  2866. "squizlabs/php_codesniffer": "^3.4"
  2867. },
  2868. "type": "library",
  2869. "autoload": {
  2870. "psr-4": {
  2871. "Matrix\\": "classes/src/"
  2872. },
  2873. "files": [
  2874. "classes/src/Functions/adjoint.php",
  2875. "classes/src/Functions/antidiagonal.php",
  2876. "classes/src/Functions/cofactors.php",
  2877. "classes/src/Functions/determinant.php",
  2878. "classes/src/Functions/diagonal.php",
  2879. "classes/src/Functions/identity.php",
  2880. "classes/src/Functions/inverse.php",
  2881. "classes/src/Functions/minors.php",
  2882. "classes/src/Functions/trace.php",
  2883. "classes/src/Functions/transpose.php",
  2884. "classes/src/Operations/add.php",
  2885. "classes/src/Operations/directsum.php",
  2886. "classes/src/Operations/subtract.php",
  2887. "classes/src/Operations/multiply.php",
  2888. "classes/src/Operations/divideby.php",
  2889. "classes/src/Operations/divideinto.php"
  2890. ]
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "MIT"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Mark Baker",
  2899. "email": "mark@demon-angel.eu"
  2900. }
  2901. ],
  2902. "description": "PHP Class for working with matrices",
  2903. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2904. "keywords": [
  2905. "mathematics",
  2906. "matrix",
  2907. "vector"
  2908. ],
  2909. "support": {
  2910. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2911. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  2912. },
  2913. "time": "2021-05-25T15:42:17+00:00"
  2914. },
  2915. {
  2916. "name": "monolog/monolog",
  2917. "version": "2.2.0",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/Seldaek/monolog.git",
  2921. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2926. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  2927. "shasum": "",
  2928. "mirrors": [
  2929. {
  2930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2931. "preferred": true
  2932. }
  2933. ]
  2934. },
  2935. "require": {
  2936. "php": ">=7.2",
  2937. "psr/log": "^1.0.1"
  2938. },
  2939. "provide": {
  2940. "psr/log-implementation": "1.0.0"
  2941. },
  2942. "require-dev": {
  2943. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2944. "doctrine/couchdb": "~1.0@dev",
  2945. "elasticsearch/elasticsearch": "^7",
  2946. "graylog2/gelf-php": "^1.4.2",
  2947. "mongodb/mongodb": "^1.8",
  2948. "php-amqplib/php-amqplib": "~2.4",
  2949. "php-console/php-console": "^3.1.3",
  2950. "phpspec/prophecy": "^1.6.1",
  2951. "phpstan/phpstan": "^0.12.59",
  2952. "phpunit/phpunit": "^8.5",
  2953. "predis/predis": "^1.1",
  2954. "rollbar/rollbar": "^1.3",
  2955. "ruflin/elastica": ">=0.90 <7.0.1",
  2956. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2957. },
  2958. "suggest": {
  2959. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2960. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2961. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2962. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2963. "ext-mbstring": "Allow to work properly with unicode symbols",
  2964. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2965. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2966. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2967. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2968. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2969. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2970. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2971. },
  2972. "type": "library",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-main": "2.x-dev"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "psr-4": {
  2980. "Monolog\\": "src/Monolog"
  2981. }
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Jordi Boggiano",
  2990. "email": "j.boggiano@seld.be",
  2991. "homepage": "https://seld.be"
  2992. }
  2993. ],
  2994. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2995. "homepage": "https://github.com/Seldaek/monolog",
  2996. "keywords": [
  2997. "log",
  2998. "logging",
  2999. "psr-3"
  3000. ],
  3001. "support": {
  3002. "issues": "https://github.com/Seldaek/monolog/issues",
  3003. "source": "https://github.com/Seldaek/monolog/tree/2.2.0"
  3004. },
  3005. "funding": [
  3006. {
  3007. "url": "https://github.com/Seldaek",
  3008. "type": "github"
  3009. },
  3010. {
  3011. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3012. "type": "tidelift"
  3013. }
  3014. ],
  3015. "time": "2020-12-14T13:15:25+00:00"
  3016. },
  3017. {
  3018. "name": "myclabs/php-enum",
  3019. "version": "1.8.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/myclabs/php-enum.git",
  3023. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  3028. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  3029. "shasum": "",
  3030. "mirrors": [
  3031. {
  3032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3033. "preferred": true
  3034. }
  3035. ]
  3036. },
  3037. "require": {
  3038. "ext-json": "*",
  3039. "php": "^7.3 || ^8.0"
  3040. },
  3041. "require-dev": {
  3042. "phpunit/phpunit": "^9.5",
  3043. "squizlabs/php_codesniffer": "1.*",
  3044. "vimeo/psalm": "^4.5.1"
  3045. },
  3046. "type": "library",
  3047. "autoload": {
  3048. "psr-4": {
  3049. "MyCLabs\\Enum\\": "src/"
  3050. }
  3051. },
  3052. "notification-url": "https://packagist.org/downloads/",
  3053. "license": [
  3054. "MIT"
  3055. ],
  3056. "authors": [
  3057. {
  3058. "name": "PHP Enum contributors",
  3059. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3060. }
  3061. ],
  3062. "description": "PHP Enum implementation",
  3063. "homepage": "http://github.com/myclabs/php-enum",
  3064. "keywords": [
  3065. "enum"
  3066. ],
  3067. "support": {
  3068. "issues": "https://github.com/myclabs/php-enum/issues",
  3069. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  3070. },
  3071. "funding": [
  3072. {
  3073. "url": "https://github.com/mnapoli",
  3074. "type": "github"
  3075. },
  3076. {
  3077. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3078. "type": "tidelift"
  3079. }
  3080. ],
  3081. "time": "2021-02-15T16:11:48+00:00"
  3082. },
  3083. {
  3084. "name": "nesbot/carbon",
  3085. "version": "2.49.0",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://github.com/briannesbitt/Carbon.git",
  3089. "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/93d9db91c0235c486875d22f1e08b50bdf3e6eee",
  3094. "reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee",
  3095. "shasum": "",
  3096. "mirrors": [
  3097. {
  3098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3099. "preferred": true
  3100. }
  3101. ]
  3102. },
  3103. "require": {
  3104. "ext-json": "*",
  3105. "php": "^7.1.8 || ^8.0",
  3106. "symfony/polyfill-mbstring": "^1.0",
  3107. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3108. },
  3109. "require-dev": {
  3110. "doctrine/orm": "^2.7",
  3111. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3112. "kylekatarnls/multi-tester": "^2.0",
  3113. "phpmd/phpmd": "^2.9",
  3114. "phpstan/extension-installer": "^1.0",
  3115. "phpstan/phpstan": "^0.12.54",
  3116. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3117. "squizlabs/php_codesniffer": "^3.4"
  3118. },
  3119. "bin": [
  3120. "bin/carbon"
  3121. ],
  3122. "type": "library",
  3123. "extra": {
  3124. "branch-alias": {
  3125. "dev-master": "2.x-dev",
  3126. "dev-3.x": "3.x-dev"
  3127. },
  3128. "laravel": {
  3129. "providers": [
  3130. "Carbon\\Laravel\\ServiceProvider"
  3131. ]
  3132. },
  3133. "phpstan": {
  3134. "includes": [
  3135. "extension.neon"
  3136. ]
  3137. }
  3138. },
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Carbon\\": "src/Carbon/"
  3142. }
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Brian Nesbitt",
  3151. "email": "brian@nesbot.com",
  3152. "homepage": "http://nesbot.com"
  3153. },
  3154. {
  3155. "name": "kylekatarnls",
  3156. "homepage": "http://github.com/kylekatarnls"
  3157. }
  3158. ],
  3159. "description": "An API extension for DateTime that supports 281 different languages.",
  3160. "homepage": "http://carbon.nesbot.com",
  3161. "keywords": [
  3162. "date",
  3163. "datetime",
  3164. "time"
  3165. ],
  3166. "support": {
  3167. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3168. "source": "https://github.com/briannesbitt/Carbon"
  3169. },
  3170. "funding": [
  3171. {
  3172. "url": "https://opencollective.com/Carbon",
  3173. "type": "open_collective"
  3174. },
  3175. {
  3176. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3177. "type": "tidelift"
  3178. }
  3179. ],
  3180. "time": "2021-06-02T07:31:40+00:00"
  3181. },
  3182. {
  3183. "name": "nikic/php-parser",
  3184. "version": "v4.10.5",
  3185. "source": {
  3186. "type": "git",
  3187. "url": "https://github.com/nikic/PHP-Parser.git",
  3188. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
  3189. },
  3190. "dist": {
  3191. "type": "zip",
  3192. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
  3193. "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
  3194. "shasum": "",
  3195. "mirrors": [
  3196. {
  3197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3198. "preferred": true
  3199. }
  3200. ]
  3201. },
  3202. "require": {
  3203. "ext-tokenizer": "*",
  3204. "php": ">=7.0"
  3205. },
  3206. "require-dev": {
  3207. "ircmaxell/php-yacc": "^0.0.7",
  3208. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3209. },
  3210. "bin": [
  3211. "bin/php-parse"
  3212. ],
  3213. "type": "library",
  3214. "extra": {
  3215. "branch-alias": {
  3216. "dev-master": "4.9-dev"
  3217. }
  3218. },
  3219. "autoload": {
  3220. "psr-4": {
  3221. "PhpParser\\": "lib/PhpParser"
  3222. }
  3223. },
  3224. "notification-url": "https://packagist.org/downloads/",
  3225. "license": [
  3226. "BSD-3-Clause"
  3227. ],
  3228. "authors": [
  3229. {
  3230. "name": "Nikita Popov"
  3231. }
  3232. ],
  3233. "description": "A PHP parser written in PHP",
  3234. "keywords": [
  3235. "parser",
  3236. "php"
  3237. ],
  3238. "support": {
  3239. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3240. "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
  3241. },
  3242. "time": "2021-05-03T19:11:20+00:00"
  3243. },
  3244. {
  3245. "name": "opis/closure",
  3246. "version": "3.6.2",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/opis/closure.git",
  3250. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3255. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3256. "shasum": "",
  3257. "mirrors": [
  3258. {
  3259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3260. "preferred": true
  3261. }
  3262. ]
  3263. },
  3264. "require": {
  3265. "php": "^5.4 || ^7.0 || ^8.0"
  3266. },
  3267. "require-dev": {
  3268. "jeremeamia/superclosure": "^2.0",
  3269. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "3.6.x-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Opis\\Closure\\": "src/"
  3280. },
  3281. "files": [
  3282. "functions.php"
  3283. ]
  3284. },
  3285. "notification-url": "https://packagist.org/downloads/",
  3286. "license": [
  3287. "MIT"
  3288. ],
  3289. "authors": [
  3290. {
  3291. "name": "Marius Sarca",
  3292. "email": "marius.sarca@gmail.com"
  3293. },
  3294. {
  3295. "name": "Sorin Sarca",
  3296. "email": "sarca_sorin@hotmail.com"
  3297. }
  3298. ],
  3299. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3300. "homepage": "https://opis.io/closure",
  3301. "keywords": [
  3302. "anonymous functions",
  3303. "closure",
  3304. "function",
  3305. "serializable",
  3306. "serialization",
  3307. "serialize"
  3308. ],
  3309. "support": {
  3310. "issues": "https://github.com/opis/closure/issues",
  3311. "source": "https://github.com/opis/closure/tree/3.6.2"
  3312. },
  3313. "time": "2021-04-09T13:42:10+00:00"
  3314. },
  3315. {
  3316. "name": "oursdreams/export",
  3317. "version": "0.0.7",
  3318. "source": {
  3319. "type": "git",
  3320. "url": "https://github.com/oursdreams/export.git",
  3321. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3"
  3322. },
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://api.github.com/repos/oursdreams/export/zipball/ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3326. "reference": "ef7694ac342ff18742c17ddbce3a85076cac17e3",
  3327. "shasum": "",
  3328. "mirrors": [
  3329. {
  3330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3331. "preferred": true
  3332. }
  3333. ]
  3334. },
  3335. "type": "library",
  3336. "extra": {
  3337. "laravel": {
  3338. "providers": [
  3339. "Oursdreams\\Export\\ExportServiceProvider"
  3340. ]
  3341. }
  3342. },
  3343. "autoload": {
  3344. "psr-4": {
  3345. "Oursdreams\\Export\\": "./src"
  3346. }
  3347. },
  3348. "notification-url": "https://packagist.org/downloads/",
  3349. "license": [
  3350. "MIT"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "oursdreams",
  3355. "email": "z1792524653@163.com"
  3356. }
  3357. ],
  3358. "description": "A simple export plug-in",
  3359. "support": {
  3360. "issues": "https://github.com/oursdreams/export/issues",
  3361. "source": "https://github.com/oursdreams/export/tree/0.0.7"
  3362. },
  3363. "time": "2021-06-01T03:01:13+00:00"
  3364. },
  3365. {
  3366. "name": "overtrue/laravel-pinyin",
  3367. "version": "4.0.0",
  3368. "source": {
  3369. "type": "git",
  3370. "url": "https://github.com/overtrue/laravel-pinyin.git",
  3371. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21"
  3372. },
  3373. "dist": {
  3374. "type": "zip",
  3375. "url": "https://api.github.com/repos/overtrue/laravel-pinyin/zipball/c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3376. "reference": "c0b15aa49eac08bff80122010b91a0b3fe0f1e21",
  3377. "shasum": "",
  3378. "mirrors": [
  3379. {
  3380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3381. "preferred": true
  3382. }
  3383. ]
  3384. },
  3385. "require": {
  3386. "overtrue/pinyin": "~4.0"
  3387. },
  3388. "type": "library",
  3389. "extra": {
  3390. "laravel": {
  3391. "providers": [
  3392. "Overtrue\\LaravelPinyin\\ServiceProvider"
  3393. ],
  3394. "aliases": {
  3395. "Pinyin": "Overtrue\\LaravelPinyin\\Facades\\Pinyin"
  3396. }
  3397. }
  3398. },
  3399. "autoload": {
  3400. "psr-4": {
  3401. "Overtrue\\LaravelPinyin\\": "src/"
  3402. },
  3403. "files": [
  3404. "src/helpers.php"
  3405. ]
  3406. },
  3407. "notification-url": "https://packagist.org/downloads/",
  3408. "license": [
  3409. "MIT"
  3410. ],
  3411. "authors": [
  3412. {
  3413. "name": "overtrue",
  3414. "email": "anzhengchao@gmail.com"
  3415. }
  3416. ],
  3417. "description": "Chinese to Pinyin translator.",
  3418. "keywords": [
  3419. "Chinese",
  3420. "Pinyin",
  3421. "laravel",
  3422. "overtrue"
  3423. ],
  3424. "support": {
  3425. "issues": "https://github.com/overtrue/laravel-pinyin/issues",
  3426. "source": "https://github.com/overtrue/laravel-pinyin/tree/master"
  3427. },
  3428. "time": "2018-10-10T09:02:46+00:00"
  3429. },
  3430. {
  3431. "name": "overtrue/pinyin",
  3432. "version": "4.0.7",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/overtrue/pinyin.git",
  3436. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3441. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  3442. "shasum": "",
  3443. "mirrors": [
  3444. {
  3445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3446. "preferred": true
  3447. }
  3448. ]
  3449. },
  3450. "require": {
  3451. "php": ">=7.1"
  3452. },
  3453. "require-dev": {
  3454. "brainmaestro/composer-git-hooks": "^2.7",
  3455. "friendsofphp/php-cs-fixer": "^2.16",
  3456. "phpunit/phpunit": "~8.0"
  3457. },
  3458. "type": "library",
  3459. "extra": {
  3460. "hooks": {
  3461. "pre-commit": [
  3462. "composer test",
  3463. "composer fix-style"
  3464. ],
  3465. "pre-push": [
  3466. "composer test",
  3467. "composer check-style"
  3468. ]
  3469. }
  3470. },
  3471. "autoload": {
  3472. "psr-4": {
  3473. "Overtrue\\Pinyin\\": "src/"
  3474. },
  3475. "files": [
  3476. "src/const.php"
  3477. ]
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "authors": [
  3484. {
  3485. "name": "overtrue",
  3486. "email": "anzhengchao@gmail.com",
  3487. "homepage": "http://github.com/overtrue"
  3488. }
  3489. ],
  3490. "description": "Chinese to pinyin translator.",
  3491. "homepage": "https://github.com/overtrue/pinyin",
  3492. "keywords": [
  3493. "Chinese",
  3494. "Pinyin",
  3495. "cn2pinyin"
  3496. ],
  3497. "support": {
  3498. "issues": "https://github.com/overtrue/pinyin/issues",
  3499. "source": "https://github.com/overtrue/pinyin/tree/4.0.7"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://www.patreon.com/overtrue",
  3504. "type": "patreon"
  3505. }
  3506. ],
  3507. "time": "2021-04-16T11:13:48+00:00"
  3508. },
  3509. {
  3510. "name": "paragonie/random_compat",
  3511. "version": "v9.99.100",
  3512. "source": {
  3513. "type": "git",
  3514. "url": "https://github.com/paragonie/random_compat.git",
  3515. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3516. },
  3517. "dist": {
  3518. "type": "zip",
  3519. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3520. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3521. "shasum": "",
  3522. "mirrors": [
  3523. {
  3524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3525. "preferred": true
  3526. }
  3527. ]
  3528. },
  3529. "require": {
  3530. "php": ">= 7"
  3531. },
  3532. "require-dev": {
  3533. "phpunit/phpunit": "4.*|5.*",
  3534. "vimeo/psalm": "^1"
  3535. },
  3536. "suggest": {
  3537. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3538. },
  3539. "type": "library",
  3540. "notification-url": "https://packagist.org/downloads/",
  3541. "license": [
  3542. "MIT"
  3543. ],
  3544. "authors": [
  3545. {
  3546. "name": "Paragon Initiative Enterprises",
  3547. "email": "security@paragonie.com",
  3548. "homepage": "https://paragonie.com"
  3549. }
  3550. ],
  3551. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3552. "keywords": [
  3553. "csprng",
  3554. "polyfill",
  3555. "pseudorandom",
  3556. "random"
  3557. ],
  3558. "support": {
  3559. "email": "info@paragonie.com",
  3560. "issues": "https://github.com/paragonie/random_compat/issues",
  3561. "source": "https://github.com/paragonie/random_compat"
  3562. },
  3563. "time": "2020-10-15T08:29:30+00:00"
  3564. },
  3565. {
  3566. "name": "paragonie/sodium_compat",
  3567. "version": "v1.16.1",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/paragonie/sodium_compat.git",
  3571. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3576. "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38",
  3577. "shasum": "",
  3578. "mirrors": [
  3579. {
  3580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3581. "preferred": true
  3582. }
  3583. ]
  3584. },
  3585. "require": {
  3586. "paragonie/random_compat": ">=1",
  3587. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  3588. },
  3589. "require-dev": {
  3590. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  3591. },
  3592. "suggest": {
  3593. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  3594. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  3595. },
  3596. "type": "library",
  3597. "autoload": {
  3598. "files": [
  3599. "autoload.php"
  3600. ]
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "ISC"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Paragon Initiative Enterprises",
  3609. "email": "security@paragonie.com"
  3610. },
  3611. {
  3612. "name": "Frank Denis",
  3613. "email": "jedisct1@pureftpd.org"
  3614. }
  3615. ],
  3616. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  3617. "keywords": [
  3618. "Authentication",
  3619. "BLAKE2b",
  3620. "ChaCha20",
  3621. "ChaCha20-Poly1305",
  3622. "Chapoly",
  3623. "Curve25519",
  3624. "Ed25519",
  3625. "EdDSA",
  3626. "Edwards-curve Digital Signature Algorithm",
  3627. "Elliptic Curve Diffie-Hellman",
  3628. "Poly1305",
  3629. "Pure-PHP cryptography",
  3630. "RFC 7748",
  3631. "RFC 8032",
  3632. "Salpoly",
  3633. "Salsa20",
  3634. "X25519",
  3635. "XChaCha20-Poly1305",
  3636. "XSalsa20-Poly1305",
  3637. "Xchacha20",
  3638. "Xsalsa20",
  3639. "aead",
  3640. "cryptography",
  3641. "ecdh",
  3642. "elliptic curve",
  3643. "elliptic curve cryptography",
  3644. "encryption",
  3645. "libsodium",
  3646. "php",
  3647. "public-key cryptography",
  3648. "secret-key cryptography",
  3649. "side-channel resistant"
  3650. ],
  3651. "support": {
  3652. "issues": "https://github.com/paragonie/sodium_compat/issues",
  3653. "source": "https://github.com/paragonie/sodium_compat/tree/v1.16.1"
  3654. },
  3655. "time": "2021-05-25T12:58:14+00:00"
  3656. },
  3657. {
  3658. "name": "phpoffice/phpspreadsheet",
  3659. "version": "1.18.0",
  3660. "source": {
  3661. "type": "git",
  3662. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3663. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  3664. },
  3665. "dist": {
  3666. "type": "zip",
  3667. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3668. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  3669. "shasum": "",
  3670. "mirrors": [
  3671. {
  3672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3673. "preferred": true
  3674. }
  3675. ]
  3676. },
  3677. "require": {
  3678. "ext-ctype": "*",
  3679. "ext-dom": "*",
  3680. "ext-fileinfo": "*",
  3681. "ext-gd": "*",
  3682. "ext-iconv": "*",
  3683. "ext-libxml": "*",
  3684. "ext-mbstring": "*",
  3685. "ext-simplexml": "*",
  3686. "ext-xml": "*",
  3687. "ext-xmlreader": "*",
  3688. "ext-xmlwriter": "*",
  3689. "ext-zip": "*",
  3690. "ext-zlib": "*",
  3691. "ezyang/htmlpurifier": "^4.13",
  3692. "maennchen/zipstream-php": "^2.1",
  3693. "markbaker/complex": "^2.0",
  3694. "markbaker/matrix": "^2.0",
  3695. "php": "^7.2 || ^8.0",
  3696. "psr/http-client": "^1.0",
  3697. "psr/http-factory": "^1.0",
  3698. "psr/simple-cache": "^1.0"
  3699. },
  3700. "require-dev": {
  3701. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3702. "dompdf/dompdf": "^1.0",
  3703. "friendsofphp/php-cs-fixer": "^2.18",
  3704. "jpgraph/jpgraph": "^4.0",
  3705. "mpdf/mpdf": "^8.0",
  3706. "phpcompatibility/php-compatibility": "^9.3",
  3707. "phpstan/phpstan": "^0.12.82",
  3708. "phpstan/phpstan-phpunit": "^0.12.18",
  3709. "phpunit/phpunit": "^8.5",
  3710. "squizlabs/php_codesniffer": "^3.5",
  3711. "tecnickcom/tcpdf": "^6.3"
  3712. },
  3713. "suggest": {
  3714. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  3715. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3716. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3717. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  3718. },
  3719. "type": "library",
  3720. "autoload": {
  3721. "psr-4": {
  3722. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3723. }
  3724. },
  3725. "notification-url": "https://packagist.org/downloads/",
  3726. "license": [
  3727. "MIT"
  3728. ],
  3729. "authors": [
  3730. {
  3731. "name": "Maarten Balliauw",
  3732. "homepage": "https://blog.maartenballiauw.be"
  3733. },
  3734. {
  3735. "name": "Mark Baker",
  3736. "homepage": "https://markbakeruk.net"
  3737. },
  3738. {
  3739. "name": "Franck Lefevre",
  3740. "homepage": "https://rootslabs.net"
  3741. },
  3742. {
  3743. "name": "Erik Tilt"
  3744. },
  3745. {
  3746. "name": "Adrien Crivelli"
  3747. }
  3748. ],
  3749. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3750. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3751. "keywords": [
  3752. "OpenXML",
  3753. "excel",
  3754. "gnumeric",
  3755. "ods",
  3756. "php",
  3757. "spreadsheet",
  3758. "xls",
  3759. "xlsx"
  3760. ],
  3761. "support": {
  3762. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3763. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  3764. },
  3765. "time": "2021-05-31T18:21:15+00:00"
  3766. },
  3767. {
  3768. "name": "phpoption/phpoption",
  3769. "version": "1.7.5",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://github.com/schmittjoh/php-option.git",
  3773. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3774. },
  3775. "dist": {
  3776. "type": "zip",
  3777. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3778. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3779. "shasum": "",
  3780. "mirrors": [
  3781. {
  3782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3783. "preferred": true
  3784. }
  3785. ]
  3786. },
  3787. "require": {
  3788. "php": "^5.5.9 || ^7.0 || ^8.0"
  3789. },
  3790. "require-dev": {
  3791. "bamarni/composer-bin-plugin": "^1.4.1",
  3792. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3793. },
  3794. "type": "library",
  3795. "extra": {
  3796. "branch-alias": {
  3797. "dev-master": "1.7-dev"
  3798. }
  3799. },
  3800. "autoload": {
  3801. "psr-4": {
  3802. "PhpOption\\": "src/PhpOption/"
  3803. }
  3804. },
  3805. "notification-url": "https://packagist.org/downloads/",
  3806. "license": [
  3807. "Apache-2.0"
  3808. ],
  3809. "authors": [
  3810. {
  3811. "name": "Johannes M. Schmitt",
  3812. "email": "schmittjoh@gmail.com"
  3813. },
  3814. {
  3815. "name": "Graham Campbell",
  3816. "email": "graham@alt-three.com"
  3817. }
  3818. ],
  3819. "description": "Option Type for PHP",
  3820. "keywords": [
  3821. "language",
  3822. "option",
  3823. "php",
  3824. "type"
  3825. ],
  3826. "support": {
  3827. "issues": "https://github.com/schmittjoh/php-option/issues",
  3828. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3829. },
  3830. "funding": [
  3831. {
  3832. "url": "https://github.com/GrahamCampbell",
  3833. "type": "github"
  3834. },
  3835. {
  3836. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3837. "type": "tidelift"
  3838. }
  3839. ],
  3840. "time": "2020-07-20T17:29:33+00:00"
  3841. },
  3842. {
  3843. "name": "predis/predis",
  3844. "version": "v1.1.7",
  3845. "source": {
  3846. "type": "git",
  3847. "url": "https://github.com/predis/predis.git",
  3848. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3849. },
  3850. "dist": {
  3851. "type": "zip",
  3852. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3853. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3854. "shasum": "",
  3855. "mirrors": [
  3856. {
  3857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3858. "preferred": true
  3859. }
  3860. ]
  3861. },
  3862. "require": {
  3863. "php": ">=5.3.9"
  3864. },
  3865. "require-dev": {
  3866. "phpunit/phpunit": "~4.8"
  3867. },
  3868. "suggest": {
  3869. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3870. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3871. },
  3872. "type": "library",
  3873. "autoload": {
  3874. "psr-4": {
  3875. "Predis\\": "src/"
  3876. }
  3877. },
  3878. "notification-url": "https://packagist.org/downloads/",
  3879. "license": [
  3880. "MIT"
  3881. ],
  3882. "authors": [
  3883. {
  3884. "name": "Daniele Alessandri",
  3885. "email": "suppakilla@gmail.com",
  3886. "homepage": "http://clorophilla.net",
  3887. "role": "Creator & Maintainer"
  3888. },
  3889. {
  3890. "name": "Till Krüss",
  3891. "homepage": "https://till.im",
  3892. "role": "Maintainer"
  3893. }
  3894. ],
  3895. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3896. "homepage": "http://github.com/predis/predis",
  3897. "keywords": [
  3898. "nosql",
  3899. "predis",
  3900. "redis"
  3901. ],
  3902. "support": {
  3903. "issues": "https://github.com/predis/predis/issues",
  3904. "source": "https://github.com/predis/predis/tree/v1.1.7"
  3905. },
  3906. "funding": [
  3907. {
  3908. "url": "https://github.com/sponsors/tillkruss",
  3909. "type": "github"
  3910. }
  3911. ],
  3912. "time": "2021-04-04T19:34:46+00:00"
  3913. },
  3914. {
  3915. "name": "psr/container",
  3916. "version": "1.1.1",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/php-fig/container.git",
  3920. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3925. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3926. "shasum": "",
  3927. "mirrors": [
  3928. {
  3929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3930. "preferred": true
  3931. }
  3932. ]
  3933. },
  3934. "require": {
  3935. "php": ">=7.2.0"
  3936. },
  3937. "type": "library",
  3938. "autoload": {
  3939. "psr-4": {
  3940. "Psr\\Container\\": "src/"
  3941. }
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "PHP-FIG",
  3950. "homepage": "https://www.php-fig.org/"
  3951. }
  3952. ],
  3953. "description": "Common Container Interface (PHP FIG PSR-11)",
  3954. "homepage": "https://github.com/php-fig/container",
  3955. "keywords": [
  3956. "PSR-11",
  3957. "container",
  3958. "container-interface",
  3959. "container-interop",
  3960. "psr"
  3961. ],
  3962. "support": {
  3963. "issues": "https://github.com/php-fig/container/issues",
  3964. "source": "https://github.com/php-fig/container/tree/1.1.1"
  3965. },
  3966. "time": "2021-03-05T17:36:06+00:00"
  3967. },
  3968. {
  3969. "name": "psr/event-dispatcher",
  3970. "version": "1.0.0",
  3971. "source": {
  3972. "type": "git",
  3973. "url": "https://github.com/php-fig/event-dispatcher.git",
  3974. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3975. },
  3976. "dist": {
  3977. "type": "zip",
  3978. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3979. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3980. "shasum": "",
  3981. "mirrors": [
  3982. {
  3983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3984. "preferred": true
  3985. }
  3986. ]
  3987. },
  3988. "require": {
  3989. "php": ">=7.2.0"
  3990. },
  3991. "type": "library",
  3992. "extra": {
  3993. "branch-alias": {
  3994. "dev-master": "1.0.x-dev"
  3995. }
  3996. },
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Psr\\EventDispatcher\\": "src/"
  4000. }
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "MIT"
  4005. ],
  4006. "authors": [
  4007. {
  4008. "name": "PHP-FIG",
  4009. "homepage": "http://www.php-fig.org/"
  4010. }
  4011. ],
  4012. "description": "Standard interfaces for event handling.",
  4013. "keywords": [
  4014. "events",
  4015. "psr",
  4016. "psr-14"
  4017. ],
  4018. "support": {
  4019. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4020. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4021. },
  4022. "time": "2019-01-08T18:20:26+00:00"
  4023. },
  4024. {
  4025. "name": "psr/http-client",
  4026. "version": "1.0.1",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://github.com/php-fig/http-client.git",
  4030. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4035. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4036. "shasum": "",
  4037. "mirrors": [
  4038. {
  4039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4040. "preferred": true
  4041. }
  4042. ]
  4043. },
  4044. "require": {
  4045. "php": "^7.0 || ^8.0",
  4046. "psr/http-message": "^1.0"
  4047. },
  4048. "type": "library",
  4049. "extra": {
  4050. "branch-alias": {
  4051. "dev-master": "1.0.x-dev"
  4052. }
  4053. },
  4054. "autoload": {
  4055. "psr-4": {
  4056. "Psr\\Http\\Client\\": "src/"
  4057. }
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "PHP-FIG",
  4066. "homepage": "http://www.php-fig.org/"
  4067. }
  4068. ],
  4069. "description": "Common interface for HTTP clients",
  4070. "homepage": "https://github.com/php-fig/http-client",
  4071. "keywords": [
  4072. "http",
  4073. "http-client",
  4074. "psr",
  4075. "psr-18"
  4076. ],
  4077. "support": {
  4078. "source": "https://github.com/php-fig/http-client/tree/master"
  4079. },
  4080. "time": "2020-06-29T06:28:15+00:00"
  4081. },
  4082. {
  4083. "name": "psr/http-factory",
  4084. "version": "1.0.1",
  4085. "source": {
  4086. "type": "git",
  4087. "url": "https://github.com/php-fig/http-factory.git",
  4088. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  4089. },
  4090. "dist": {
  4091. "type": "zip",
  4092. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4093. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  4094. "shasum": "",
  4095. "mirrors": [
  4096. {
  4097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4098. "preferred": true
  4099. }
  4100. ]
  4101. },
  4102. "require": {
  4103. "php": ">=7.0.0",
  4104. "psr/http-message": "^1.0"
  4105. },
  4106. "type": "library",
  4107. "extra": {
  4108. "branch-alias": {
  4109. "dev-master": "1.0.x-dev"
  4110. }
  4111. },
  4112. "autoload": {
  4113. "psr-4": {
  4114. "Psr\\Http\\Message\\": "src/"
  4115. }
  4116. },
  4117. "notification-url": "https://packagist.org/downloads/",
  4118. "license": [
  4119. "MIT"
  4120. ],
  4121. "authors": [
  4122. {
  4123. "name": "PHP-FIG",
  4124. "homepage": "http://www.php-fig.org/"
  4125. }
  4126. ],
  4127. "description": "Common interfaces for PSR-7 HTTP message factories",
  4128. "keywords": [
  4129. "factory",
  4130. "http",
  4131. "message",
  4132. "psr",
  4133. "psr-17",
  4134. "psr-7",
  4135. "request",
  4136. "response"
  4137. ],
  4138. "support": {
  4139. "source": "https://github.com/php-fig/http-factory/tree/master"
  4140. },
  4141. "time": "2019-04-30T12:38:16+00:00"
  4142. },
  4143. {
  4144. "name": "psr/http-message",
  4145. "version": "1.0.1",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://github.com/php-fig/http-message.git",
  4149. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4154. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4155. "shasum": "",
  4156. "mirrors": [
  4157. {
  4158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4159. "preferred": true
  4160. }
  4161. ]
  4162. },
  4163. "require": {
  4164. "php": ">=5.3.0"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-master": "1.0.x-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "Psr\\Http\\Message\\": "src/"
  4175. }
  4176. },
  4177. "notification-url": "https://packagist.org/downloads/",
  4178. "license": [
  4179. "MIT"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "PHP-FIG",
  4184. "homepage": "http://www.php-fig.org/"
  4185. }
  4186. ],
  4187. "description": "Common interface for HTTP messages",
  4188. "homepage": "https://github.com/php-fig/http-message",
  4189. "keywords": [
  4190. "http",
  4191. "http-message",
  4192. "psr",
  4193. "psr-7",
  4194. "request",
  4195. "response"
  4196. ],
  4197. "support": {
  4198. "source": "https://github.com/php-fig/http-message/tree/master"
  4199. },
  4200. "time": "2016-08-06T14:39:51+00:00"
  4201. },
  4202. {
  4203. "name": "psr/log",
  4204. "version": "1.1.4",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/php-fig/log.git",
  4208. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4213. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4214. "shasum": "",
  4215. "mirrors": [
  4216. {
  4217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4218. "preferred": true
  4219. }
  4220. ]
  4221. },
  4222. "require": {
  4223. "php": ">=5.3.0"
  4224. },
  4225. "type": "library",
  4226. "extra": {
  4227. "branch-alias": {
  4228. "dev-master": "1.1.x-dev"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Psr\\Log\\": "Psr/Log/"
  4234. }
  4235. },
  4236. "notification-url": "https://packagist.org/downloads/",
  4237. "license": [
  4238. "MIT"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "PHP-FIG",
  4243. "homepage": "https://www.php-fig.org/"
  4244. }
  4245. ],
  4246. "description": "Common interface for logging libraries",
  4247. "homepage": "https://github.com/php-fig/log",
  4248. "keywords": [
  4249. "log",
  4250. "psr",
  4251. "psr-3"
  4252. ],
  4253. "support": {
  4254. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4255. },
  4256. "time": "2021-05-03T11:20:27+00:00"
  4257. },
  4258. {
  4259. "name": "psr/simple-cache",
  4260. "version": "1.0.1",
  4261. "source": {
  4262. "type": "git",
  4263. "url": "https://github.com/php-fig/simple-cache.git",
  4264. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4265. },
  4266. "dist": {
  4267. "type": "zip",
  4268. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4269. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4270. "shasum": "",
  4271. "mirrors": [
  4272. {
  4273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4274. "preferred": true
  4275. }
  4276. ]
  4277. },
  4278. "require": {
  4279. "php": ">=5.3.0"
  4280. },
  4281. "type": "library",
  4282. "extra": {
  4283. "branch-alias": {
  4284. "dev-master": "1.0.x-dev"
  4285. }
  4286. },
  4287. "autoload": {
  4288. "psr-4": {
  4289. "Psr\\SimpleCache\\": "src/"
  4290. }
  4291. },
  4292. "notification-url": "https://packagist.org/downloads/",
  4293. "license": [
  4294. "MIT"
  4295. ],
  4296. "authors": [
  4297. {
  4298. "name": "PHP-FIG",
  4299. "homepage": "http://www.php-fig.org/"
  4300. }
  4301. ],
  4302. "description": "Common interfaces for simple caching",
  4303. "keywords": [
  4304. "cache",
  4305. "caching",
  4306. "psr",
  4307. "psr-16",
  4308. "simple-cache"
  4309. ],
  4310. "support": {
  4311. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4312. },
  4313. "time": "2017-10-23T01:57:42+00:00"
  4314. },
  4315. {
  4316. "name": "psy/psysh",
  4317. "version": "v0.10.8",
  4318. "source": {
  4319. "type": "git",
  4320. "url": "https://github.com/bobthecow/psysh.git",
  4321. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4322. },
  4323. "dist": {
  4324. "type": "zip",
  4325. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4326. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4327. "shasum": "",
  4328. "mirrors": [
  4329. {
  4330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4331. "preferred": true
  4332. }
  4333. ]
  4334. },
  4335. "require": {
  4336. "ext-json": "*",
  4337. "ext-tokenizer": "*",
  4338. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4339. "php": "^8.0 || ^7.0 || ^5.5.9",
  4340. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4341. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4342. },
  4343. "require-dev": {
  4344. "bamarni/composer-bin-plugin": "^1.2",
  4345. "hoa/console": "3.17.*"
  4346. },
  4347. "suggest": {
  4348. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4349. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4350. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4351. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4352. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4353. },
  4354. "bin": [
  4355. "bin/psysh"
  4356. ],
  4357. "type": "library",
  4358. "extra": {
  4359. "branch-alias": {
  4360. "dev-main": "0.10.x-dev"
  4361. }
  4362. },
  4363. "autoload": {
  4364. "files": [
  4365. "src/functions.php"
  4366. ],
  4367. "psr-4": {
  4368. "Psy\\": "src/"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Justin Hileman",
  4378. "email": "justin@justinhileman.info",
  4379. "homepage": "http://justinhileman.com"
  4380. }
  4381. ],
  4382. "description": "An interactive shell for modern PHP.",
  4383. "homepage": "http://psysh.org",
  4384. "keywords": [
  4385. "REPL",
  4386. "console",
  4387. "interactive",
  4388. "shell"
  4389. ],
  4390. "support": {
  4391. "issues": "https://github.com/bobthecow/psysh/issues",
  4392. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4393. },
  4394. "time": "2021-04-10T16:23:39+00:00"
  4395. },
  4396. {
  4397. "name": "pusher/pusher-php-server",
  4398. "version": "v4.1.5",
  4399. "source": {
  4400. "type": "git",
  4401. "url": "https://github.com/pusher/pusher-http-php.git",
  4402. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  4403. },
  4404. "dist": {
  4405. "type": "zip",
  4406. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4407. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  4408. "shasum": "",
  4409. "mirrors": [
  4410. {
  4411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4412. "preferred": true
  4413. }
  4414. ]
  4415. },
  4416. "require": {
  4417. "ext-curl": "*",
  4418. "paragonie/sodium_compat": "^1.6",
  4419. "php": "^7.1|^8.0",
  4420. "psr/log": "^1.0"
  4421. },
  4422. "require-dev": {
  4423. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  4424. },
  4425. "type": "library",
  4426. "extra": {
  4427. "branch-alias": {
  4428. "dev-master": "3.4-dev"
  4429. }
  4430. },
  4431. "autoload": {
  4432. "psr-4": {
  4433. "Pusher\\": "src/"
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "description": "Library for interacting with the Pusher REST API",
  4441. "keywords": [
  4442. "events",
  4443. "messaging",
  4444. "php-pusher-server",
  4445. "publish",
  4446. "push",
  4447. "pusher",
  4448. "real time",
  4449. "real-time",
  4450. "realtime",
  4451. "rest",
  4452. "trigger"
  4453. ],
  4454. "support": {
  4455. "issues": "https://github.com/pusher/pusher-http-php/issues",
  4456. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  4457. },
  4458. "time": "2020-12-09T09:38:19+00:00"
  4459. },
  4460. {
  4461. "name": "ralouphie/getallheaders",
  4462. "version": "3.0.3",
  4463. "source": {
  4464. "type": "git",
  4465. "url": "https://github.com/ralouphie/getallheaders.git",
  4466. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4467. },
  4468. "dist": {
  4469. "type": "zip",
  4470. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4471. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4472. "shasum": "",
  4473. "mirrors": [
  4474. {
  4475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4476. "preferred": true
  4477. }
  4478. ]
  4479. },
  4480. "require": {
  4481. "php": ">=5.6"
  4482. },
  4483. "require-dev": {
  4484. "php-coveralls/php-coveralls": "^2.1",
  4485. "phpunit/phpunit": "^5 || ^6.5"
  4486. },
  4487. "type": "library",
  4488. "autoload": {
  4489. "files": [
  4490. "src/getallheaders.php"
  4491. ]
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "MIT"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Ralph Khattar",
  4500. "email": "ralph.khattar@gmail.com"
  4501. }
  4502. ],
  4503. "description": "A polyfill for getallheaders.",
  4504. "support": {
  4505. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4506. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4507. },
  4508. "time": "2019-03-08T08:55:37+00:00"
  4509. },
  4510. {
  4511. "name": "ramsey/collection",
  4512. "version": "1.1.3",
  4513. "source": {
  4514. "type": "git",
  4515. "url": "https://github.com/ramsey/collection.git",
  4516. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1"
  4517. },
  4518. "dist": {
  4519. "type": "zip",
  4520. "url": "https://api.github.com/repos/ramsey/collection/zipball/28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4521. "reference": "28a5c4ab2f5111db6a60b2b4ec84057e0f43b9c1",
  4522. "shasum": "",
  4523. "mirrors": [
  4524. {
  4525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4526. "preferred": true
  4527. }
  4528. ]
  4529. },
  4530. "require": {
  4531. "php": "^7.2 || ^8"
  4532. },
  4533. "require-dev": {
  4534. "captainhook/captainhook": "^5.3",
  4535. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4536. "ergebnis/composer-normalize": "^2.6",
  4537. "fakerphp/faker": "^1.5",
  4538. "hamcrest/hamcrest-php": "^2",
  4539. "jangregor/phpstan-prophecy": "^0.8",
  4540. "mockery/mockery": "^1.3",
  4541. "phpstan/extension-installer": "^1",
  4542. "phpstan/phpstan": "^0.12.32",
  4543. "phpstan/phpstan-mockery": "^0.12.5",
  4544. "phpstan/phpstan-phpunit": "^0.12.11",
  4545. "phpunit/phpunit": "^8.5 || ^9",
  4546. "psy/psysh": "^0.10.4",
  4547. "slevomat/coding-standard": "^6.3",
  4548. "squizlabs/php_codesniffer": "^3.5",
  4549. "vimeo/psalm": "^4.4"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "Ramsey\\Collection\\": "src/"
  4555. }
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "MIT"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "Ben Ramsey",
  4564. "email": "ben@benramsey.com",
  4565. "homepage": "https://benramsey.com"
  4566. }
  4567. ],
  4568. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4569. "keywords": [
  4570. "array",
  4571. "collection",
  4572. "hash",
  4573. "map",
  4574. "queue",
  4575. "set"
  4576. ],
  4577. "support": {
  4578. "issues": "https://github.com/ramsey/collection/issues",
  4579. "source": "https://github.com/ramsey/collection/tree/1.1.3"
  4580. },
  4581. "funding": [
  4582. {
  4583. "url": "https://github.com/ramsey",
  4584. "type": "github"
  4585. },
  4586. {
  4587. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4588. "type": "tidelift"
  4589. }
  4590. ],
  4591. "time": "2021-01-21T17:40:04+00:00"
  4592. },
  4593. {
  4594. "name": "ramsey/uuid",
  4595. "version": "4.1.1",
  4596. "source": {
  4597. "type": "git",
  4598. "url": "https://github.com/ramsey/uuid.git",
  4599. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4600. },
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4604. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4605. "shasum": "",
  4606. "mirrors": [
  4607. {
  4608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4609. "preferred": true
  4610. }
  4611. ]
  4612. },
  4613. "require": {
  4614. "brick/math": "^0.8 || ^0.9",
  4615. "ext-json": "*",
  4616. "php": "^7.2 || ^8",
  4617. "ramsey/collection": "^1.0",
  4618. "symfony/polyfill-ctype": "^1.8"
  4619. },
  4620. "replace": {
  4621. "rhumsaa/uuid": "self.version"
  4622. },
  4623. "require-dev": {
  4624. "codeception/aspect-mock": "^3",
  4625. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4626. "doctrine/annotations": "^1.8",
  4627. "goaop/framework": "^2",
  4628. "mockery/mockery": "^1.3",
  4629. "moontoast/math": "^1.1",
  4630. "paragonie/random-lib": "^2",
  4631. "php-mock/php-mock-mockery": "^1.3",
  4632. "php-mock/php-mock-phpunit": "^2.5",
  4633. "php-parallel-lint/php-parallel-lint": "^1.1",
  4634. "phpbench/phpbench": "^0.17.1",
  4635. "phpstan/extension-installer": "^1.0",
  4636. "phpstan/phpstan": "^0.12",
  4637. "phpstan/phpstan-mockery": "^0.12",
  4638. "phpstan/phpstan-phpunit": "^0.12",
  4639. "phpunit/phpunit": "^8.5",
  4640. "psy/psysh": "^0.10.0",
  4641. "slevomat/coding-standard": "^6.0",
  4642. "squizlabs/php_codesniffer": "^3.5",
  4643. "vimeo/psalm": "3.9.4"
  4644. },
  4645. "suggest": {
  4646. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4647. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4648. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4649. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4650. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4651. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4652. },
  4653. "type": "library",
  4654. "extra": {
  4655. "branch-alias": {
  4656. "dev-master": "4.x-dev"
  4657. }
  4658. },
  4659. "autoload": {
  4660. "psr-4": {
  4661. "Ramsey\\Uuid\\": "src/"
  4662. },
  4663. "files": [
  4664. "src/functions.php"
  4665. ]
  4666. },
  4667. "notification-url": "https://packagist.org/downloads/",
  4668. "license": [
  4669. "MIT"
  4670. ],
  4671. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4672. "homepage": "https://github.com/ramsey/uuid",
  4673. "keywords": [
  4674. "guid",
  4675. "identifier",
  4676. "uuid"
  4677. ],
  4678. "support": {
  4679. "issues": "https://github.com/ramsey/uuid/issues",
  4680. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4681. "source": "https://github.com/ramsey/uuid"
  4682. },
  4683. "funding": [
  4684. {
  4685. "url": "https://github.com/ramsey",
  4686. "type": "github"
  4687. }
  4688. ],
  4689. "time": "2020-08-18T17:17:46+00:00"
  4690. },
  4691. {
  4692. "name": "swiftmailer/swiftmailer",
  4693. "version": "v6.2.7",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4697. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4702. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4703. "shasum": "",
  4704. "mirrors": [
  4705. {
  4706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4707. "preferred": true
  4708. }
  4709. ]
  4710. },
  4711. "require": {
  4712. "egulias/email-validator": "^2.0|^3.1",
  4713. "php": ">=7.0.0",
  4714. "symfony/polyfill-iconv": "^1.0",
  4715. "symfony/polyfill-intl-idn": "^1.10",
  4716. "symfony/polyfill-mbstring": "^1.0"
  4717. },
  4718. "require-dev": {
  4719. "mockery/mockery": "^1.0",
  4720. "symfony/phpunit-bridge": "^4.4|^5.0"
  4721. },
  4722. "suggest": {
  4723. "ext-intl": "Needed to support internationalized email addresses"
  4724. },
  4725. "type": "library",
  4726. "extra": {
  4727. "branch-alias": {
  4728. "dev-master": "6.2-dev"
  4729. }
  4730. },
  4731. "autoload": {
  4732. "files": [
  4733. "lib/swift_required.php"
  4734. ]
  4735. },
  4736. "notification-url": "https://packagist.org/downloads/",
  4737. "license": [
  4738. "MIT"
  4739. ],
  4740. "authors": [
  4741. {
  4742. "name": "Chris Corbyn"
  4743. },
  4744. {
  4745. "name": "Fabien Potencier",
  4746. "email": "fabien@symfony.com"
  4747. }
  4748. ],
  4749. "description": "Swiftmailer, free feature-rich PHP mailer",
  4750. "homepage": "https://swiftmailer.symfony.com",
  4751. "keywords": [
  4752. "email",
  4753. "mail",
  4754. "mailer"
  4755. ],
  4756. "support": {
  4757. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4758. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4759. },
  4760. "funding": [
  4761. {
  4762. "url": "https://github.com/fabpot",
  4763. "type": "github"
  4764. },
  4765. {
  4766. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4767. "type": "tidelift"
  4768. }
  4769. ],
  4770. "time": "2021-03-09T12:30:35+00:00"
  4771. },
  4772. {
  4773. "name": "symfony/console",
  4774. "version": "v5.3.2",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/symfony/console.git",
  4778. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  4783. "reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
  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. "php": ">=7.2.5",
  4794. "symfony/deprecation-contracts": "^2.1",
  4795. "symfony/polyfill-mbstring": "~1.0",
  4796. "symfony/polyfill-php73": "^1.8",
  4797. "symfony/polyfill-php80": "^1.15",
  4798. "symfony/service-contracts": "^1.1|^2",
  4799. "symfony/string": "^5.1"
  4800. },
  4801. "conflict": {
  4802. "symfony/dependency-injection": "<4.4",
  4803. "symfony/dotenv": "<5.1",
  4804. "symfony/event-dispatcher": "<4.4",
  4805. "symfony/lock": "<4.4",
  4806. "symfony/process": "<4.4"
  4807. },
  4808. "provide": {
  4809. "psr/log-implementation": "1.0"
  4810. },
  4811. "require-dev": {
  4812. "psr/log": "~1.0",
  4813. "symfony/config": "^4.4|^5.0",
  4814. "symfony/dependency-injection": "^4.4|^5.0",
  4815. "symfony/event-dispatcher": "^4.4|^5.0",
  4816. "symfony/lock": "^4.4|^5.0",
  4817. "symfony/process": "^4.4|^5.0",
  4818. "symfony/var-dumper": "^4.4|^5.0"
  4819. },
  4820. "suggest": {
  4821. "psr/log": "For using the console logger",
  4822. "symfony/event-dispatcher": "",
  4823. "symfony/lock": "",
  4824. "symfony/process": ""
  4825. },
  4826. "type": "library",
  4827. "autoload": {
  4828. "psr-4": {
  4829. "Symfony\\Component\\Console\\": ""
  4830. },
  4831. "exclude-from-classmap": [
  4832. "/Tests/"
  4833. ]
  4834. },
  4835. "notification-url": "https://packagist.org/downloads/",
  4836. "license": [
  4837. "MIT"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "Fabien Potencier",
  4842. "email": "fabien@symfony.com"
  4843. },
  4844. {
  4845. "name": "Symfony Community",
  4846. "homepage": "https://symfony.com/contributors"
  4847. }
  4848. ],
  4849. "description": "Eases the creation of beautiful and testable command line interfaces",
  4850. "homepage": "https://symfony.com",
  4851. "keywords": [
  4852. "cli",
  4853. "command line",
  4854. "console",
  4855. "terminal"
  4856. ],
  4857. "support": {
  4858. "source": "https://github.com/symfony/console/tree/v5.3.2"
  4859. },
  4860. "funding": [
  4861. {
  4862. "url": "https://symfony.com/sponsor",
  4863. "type": "custom"
  4864. },
  4865. {
  4866. "url": "https://github.com/fabpot",
  4867. "type": "github"
  4868. },
  4869. {
  4870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4871. "type": "tidelift"
  4872. }
  4873. ],
  4874. "time": "2021-06-12T09:42:48+00:00"
  4875. },
  4876. {
  4877. "name": "symfony/css-selector",
  4878. "version": "v5.3.0",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://github.com/symfony/css-selector.git",
  4882. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://api.github.com/repos/symfony/css-selector/zipball/fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4887. "reference": "fcd0b29a7a0b1bb5bfbedc6231583d77fea04814",
  4888. "shasum": "",
  4889. "mirrors": [
  4890. {
  4891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4892. "preferred": true
  4893. }
  4894. ]
  4895. },
  4896. "require": {
  4897. "php": ">=7.2.5"
  4898. },
  4899. "type": "library",
  4900. "autoload": {
  4901. "psr-4": {
  4902. "Symfony\\Component\\CssSelector\\": ""
  4903. },
  4904. "exclude-from-classmap": [
  4905. "/Tests/"
  4906. ]
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Fabien Potencier",
  4915. "email": "fabien@symfony.com"
  4916. },
  4917. {
  4918. "name": "Jean-François Simon",
  4919. "email": "jeanfrancois.simon@sensiolabs.com"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Converts CSS selectors to XPath expressions",
  4927. "homepage": "https://symfony.com",
  4928. "support": {
  4929. "source": "https://github.com/symfony/css-selector/tree/v5.3.0"
  4930. },
  4931. "funding": [
  4932. {
  4933. "url": "https://symfony.com/sponsor",
  4934. "type": "custom"
  4935. },
  4936. {
  4937. "url": "https://github.com/fabpot",
  4938. "type": "github"
  4939. },
  4940. {
  4941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4942. "type": "tidelift"
  4943. }
  4944. ],
  4945. "time": "2021-05-26T17:40:38+00:00"
  4946. },
  4947. {
  4948. "name": "symfony/deprecation-contracts",
  4949. "version": "v2.4.0",
  4950. "source": {
  4951. "type": "git",
  4952. "url": "https://github.com/symfony/deprecation-contracts.git",
  4953. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4954. },
  4955. "dist": {
  4956. "type": "zip",
  4957. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4958. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4959. "shasum": "",
  4960. "mirrors": [
  4961. {
  4962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4963. "preferred": true
  4964. }
  4965. ]
  4966. },
  4967. "require": {
  4968. "php": ">=7.1"
  4969. },
  4970. "type": "library",
  4971. "extra": {
  4972. "branch-alias": {
  4973. "dev-main": "2.4-dev"
  4974. },
  4975. "thanks": {
  4976. "name": "symfony/contracts",
  4977. "url": "https://github.com/symfony/contracts"
  4978. }
  4979. },
  4980. "autoload": {
  4981. "files": [
  4982. "function.php"
  4983. ]
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "Nicolas Grekas",
  4992. "email": "p@tchwork.com"
  4993. },
  4994. {
  4995. "name": "Symfony Community",
  4996. "homepage": "https://symfony.com/contributors"
  4997. }
  4998. ],
  4999. "description": "A generic function and convention to trigger deprecation notices",
  5000. "homepage": "https://symfony.com",
  5001. "support": {
  5002. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5003. },
  5004. "funding": [
  5005. {
  5006. "url": "https://symfony.com/sponsor",
  5007. "type": "custom"
  5008. },
  5009. {
  5010. "url": "https://github.com/fabpot",
  5011. "type": "github"
  5012. },
  5013. {
  5014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5015. "type": "tidelift"
  5016. }
  5017. ],
  5018. "time": "2021-03-23T23:28:01+00:00"
  5019. },
  5020. {
  5021. "name": "symfony/error-handler",
  5022. "version": "v5.3.0",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/symfony/error-handler.git",
  5026. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  5031. "reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2",
  5032. "shasum": "",
  5033. "mirrors": [
  5034. {
  5035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5036. "preferred": true
  5037. }
  5038. ]
  5039. },
  5040. "require": {
  5041. "php": ">=7.2.5",
  5042. "psr/log": "^1.0",
  5043. "symfony/polyfill-php80": "^1.15",
  5044. "symfony/var-dumper": "^4.4|^5.0"
  5045. },
  5046. "require-dev": {
  5047. "symfony/deprecation-contracts": "^2.1",
  5048. "symfony/http-kernel": "^4.4|^5.0",
  5049. "symfony/serializer": "^4.4|^5.0"
  5050. },
  5051. "type": "library",
  5052. "autoload": {
  5053. "psr-4": {
  5054. "Symfony\\Component\\ErrorHandler\\": ""
  5055. },
  5056. "exclude-from-classmap": [
  5057. "/Tests/"
  5058. ]
  5059. },
  5060. "notification-url": "https://packagist.org/downloads/",
  5061. "license": [
  5062. "MIT"
  5063. ],
  5064. "authors": [
  5065. {
  5066. "name": "Fabien Potencier",
  5067. "email": "fabien@symfony.com"
  5068. },
  5069. {
  5070. "name": "Symfony Community",
  5071. "homepage": "https://symfony.com/contributors"
  5072. }
  5073. ],
  5074. "description": "Provides tools to manage errors and ease debugging PHP code",
  5075. "homepage": "https://symfony.com",
  5076. "support": {
  5077. "source": "https://github.com/symfony/error-handler/tree/v5.3.0"
  5078. },
  5079. "funding": [
  5080. {
  5081. "url": "https://symfony.com/sponsor",
  5082. "type": "custom"
  5083. },
  5084. {
  5085. "url": "https://github.com/fabpot",
  5086. "type": "github"
  5087. },
  5088. {
  5089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5090. "type": "tidelift"
  5091. }
  5092. ],
  5093. "time": "2021-05-26T17:43:10+00:00"
  5094. },
  5095. {
  5096. "name": "symfony/event-dispatcher",
  5097. "version": "v5.3.0",
  5098. "source": {
  5099. "type": "git",
  5100. "url": "https://github.com/symfony/event-dispatcher.git",
  5101. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce"
  5102. },
  5103. "dist": {
  5104. "type": "zip",
  5105. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5106. "reference": "67a5f354afa8e2f231081b3fa11a5912f933c3ce",
  5107. "shasum": "",
  5108. "mirrors": [
  5109. {
  5110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5111. "preferred": true
  5112. }
  5113. ]
  5114. },
  5115. "require": {
  5116. "php": ">=7.2.5",
  5117. "symfony/deprecation-contracts": "^2.1",
  5118. "symfony/event-dispatcher-contracts": "^2",
  5119. "symfony/polyfill-php80": "^1.15"
  5120. },
  5121. "conflict": {
  5122. "symfony/dependency-injection": "<4.4"
  5123. },
  5124. "provide": {
  5125. "psr/event-dispatcher-implementation": "1.0",
  5126. "symfony/event-dispatcher-implementation": "2.0"
  5127. },
  5128. "require-dev": {
  5129. "psr/log": "~1.0",
  5130. "symfony/config": "^4.4|^5.0",
  5131. "symfony/dependency-injection": "^4.4|^5.0",
  5132. "symfony/error-handler": "^4.4|^5.0",
  5133. "symfony/expression-language": "^4.4|^5.0",
  5134. "symfony/http-foundation": "^4.4|^5.0",
  5135. "symfony/service-contracts": "^1.1|^2",
  5136. "symfony/stopwatch": "^4.4|^5.0"
  5137. },
  5138. "suggest": {
  5139. "symfony/dependency-injection": "",
  5140. "symfony/http-kernel": ""
  5141. },
  5142. "type": "library",
  5143. "autoload": {
  5144. "psr-4": {
  5145. "Symfony\\Component\\EventDispatcher\\": ""
  5146. },
  5147. "exclude-from-classmap": [
  5148. "/Tests/"
  5149. ]
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Fabien Potencier",
  5158. "email": "fabien@symfony.com"
  5159. },
  5160. {
  5161. "name": "Symfony Community",
  5162. "homepage": "https://symfony.com/contributors"
  5163. }
  5164. ],
  5165. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5166. "homepage": "https://symfony.com",
  5167. "support": {
  5168. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.0"
  5169. },
  5170. "funding": [
  5171. {
  5172. "url": "https://symfony.com/sponsor",
  5173. "type": "custom"
  5174. },
  5175. {
  5176. "url": "https://github.com/fabpot",
  5177. "type": "github"
  5178. },
  5179. {
  5180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5181. "type": "tidelift"
  5182. }
  5183. ],
  5184. "time": "2021-05-26T17:43:10+00:00"
  5185. },
  5186. {
  5187. "name": "symfony/event-dispatcher-contracts",
  5188. "version": "v2.4.0",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5192. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5197. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5198. "shasum": "",
  5199. "mirrors": [
  5200. {
  5201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5202. "preferred": true
  5203. }
  5204. ]
  5205. },
  5206. "require": {
  5207. "php": ">=7.2.5",
  5208. "psr/event-dispatcher": "^1"
  5209. },
  5210. "suggest": {
  5211. "symfony/event-dispatcher-implementation": ""
  5212. },
  5213. "type": "library",
  5214. "extra": {
  5215. "branch-alias": {
  5216. "dev-main": "2.4-dev"
  5217. },
  5218. "thanks": {
  5219. "name": "symfony/contracts",
  5220. "url": "https://github.com/symfony/contracts"
  5221. }
  5222. },
  5223. "autoload": {
  5224. "psr-4": {
  5225. "Symfony\\Contracts\\EventDispatcher\\": ""
  5226. }
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Nicolas Grekas",
  5235. "email": "p@tchwork.com"
  5236. },
  5237. {
  5238. "name": "Symfony Community",
  5239. "homepage": "https://symfony.com/contributors"
  5240. }
  5241. ],
  5242. "description": "Generic abstractions related to dispatching event",
  5243. "homepage": "https://symfony.com",
  5244. "keywords": [
  5245. "abstractions",
  5246. "contracts",
  5247. "decoupling",
  5248. "interfaces",
  5249. "interoperability",
  5250. "standards"
  5251. ],
  5252. "support": {
  5253. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5254. },
  5255. "funding": [
  5256. {
  5257. "url": "https://symfony.com/sponsor",
  5258. "type": "custom"
  5259. },
  5260. {
  5261. "url": "https://github.com/fabpot",
  5262. "type": "github"
  5263. },
  5264. {
  5265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5266. "type": "tidelift"
  5267. }
  5268. ],
  5269. "time": "2021-03-23T23:28:01+00:00"
  5270. },
  5271. {
  5272. "name": "symfony/finder",
  5273. "version": "v5.3.0",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://github.com/symfony/finder.git",
  5277. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5282. "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6",
  5283. "shasum": "",
  5284. "mirrors": [
  5285. {
  5286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5287. "preferred": true
  5288. }
  5289. ]
  5290. },
  5291. "require": {
  5292. "php": ">=7.2.5"
  5293. },
  5294. "type": "library",
  5295. "autoload": {
  5296. "psr-4": {
  5297. "Symfony\\Component\\Finder\\": ""
  5298. },
  5299. "exclude-from-classmap": [
  5300. "/Tests/"
  5301. ]
  5302. },
  5303. "notification-url": "https://packagist.org/downloads/",
  5304. "license": [
  5305. "MIT"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "Fabien Potencier",
  5310. "email": "fabien@symfony.com"
  5311. },
  5312. {
  5313. "name": "Symfony Community",
  5314. "homepage": "https://symfony.com/contributors"
  5315. }
  5316. ],
  5317. "description": "Finds files and directories via an intuitive fluent interface",
  5318. "homepage": "https://symfony.com",
  5319. "support": {
  5320. "source": "https://github.com/symfony/finder/tree/v5.3.0"
  5321. },
  5322. "funding": [
  5323. {
  5324. "url": "https://symfony.com/sponsor",
  5325. "type": "custom"
  5326. },
  5327. {
  5328. "url": "https://github.com/fabpot",
  5329. "type": "github"
  5330. },
  5331. {
  5332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5333. "type": "tidelift"
  5334. }
  5335. ],
  5336. "time": "2021-05-26T12:52:38+00:00"
  5337. },
  5338. {
  5339. "name": "symfony/http-client-contracts",
  5340. "version": "v2.4.0",
  5341. "source": {
  5342. "type": "git",
  5343. "url": "https://github.com/symfony/http-client-contracts.git",
  5344. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5345. },
  5346. "dist": {
  5347. "type": "zip",
  5348. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5349. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5350. "shasum": "",
  5351. "mirrors": [
  5352. {
  5353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5354. "preferred": true
  5355. }
  5356. ]
  5357. },
  5358. "require": {
  5359. "php": ">=7.2.5"
  5360. },
  5361. "suggest": {
  5362. "symfony/http-client-implementation": ""
  5363. },
  5364. "type": "library",
  5365. "extra": {
  5366. "branch-alias": {
  5367. "dev-main": "2.4-dev"
  5368. },
  5369. "thanks": {
  5370. "name": "symfony/contracts",
  5371. "url": "https://github.com/symfony/contracts"
  5372. }
  5373. },
  5374. "autoload": {
  5375. "psr-4": {
  5376. "Symfony\\Contracts\\HttpClient\\": ""
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Nicolas Grekas",
  5386. "email": "p@tchwork.com"
  5387. },
  5388. {
  5389. "name": "Symfony Community",
  5390. "homepage": "https://symfony.com/contributors"
  5391. }
  5392. ],
  5393. "description": "Generic abstractions related to HTTP clients",
  5394. "homepage": "https://symfony.com",
  5395. "keywords": [
  5396. "abstractions",
  5397. "contracts",
  5398. "decoupling",
  5399. "interfaces",
  5400. "interoperability",
  5401. "standards"
  5402. ],
  5403. "support": {
  5404. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5405. },
  5406. "funding": [
  5407. {
  5408. "url": "https://symfony.com/sponsor",
  5409. "type": "custom"
  5410. },
  5411. {
  5412. "url": "https://github.com/fabpot",
  5413. "type": "github"
  5414. },
  5415. {
  5416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5417. "type": "tidelift"
  5418. }
  5419. ],
  5420. "time": "2021-04-11T23:07:08+00:00"
  5421. },
  5422. {
  5423. "name": "symfony/http-foundation",
  5424. "version": "v5.3.2",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/symfony/http-foundation.git",
  5428. "reference": "7b6dd714d95106b831aaa7f3c9c612ab886516bd"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7b6dd714d95106b831aaa7f3c9c612ab886516bd",
  5433. "reference": "7b6dd714d95106b831aaa7f3c9c612ab886516bd",
  5434. "shasum": "",
  5435. "mirrors": [
  5436. {
  5437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5438. "preferred": true
  5439. }
  5440. ]
  5441. },
  5442. "require": {
  5443. "php": ">=7.2.5",
  5444. "symfony/deprecation-contracts": "^2.1",
  5445. "symfony/polyfill-mbstring": "~1.1",
  5446. "symfony/polyfill-php80": "^1.15"
  5447. },
  5448. "require-dev": {
  5449. "predis/predis": "~1.0",
  5450. "symfony/cache": "^4.4|^5.0",
  5451. "symfony/expression-language": "^4.4|^5.0",
  5452. "symfony/mime": "^4.4|^5.0"
  5453. },
  5454. "suggest": {
  5455. "symfony/mime": "To use the file extension guesser"
  5456. },
  5457. "type": "library",
  5458. "autoload": {
  5459. "psr-4": {
  5460. "Symfony\\Component\\HttpFoundation\\": ""
  5461. },
  5462. "exclude-from-classmap": [
  5463. "/Tests/"
  5464. ]
  5465. },
  5466. "notification-url": "https://packagist.org/downloads/",
  5467. "license": [
  5468. "MIT"
  5469. ],
  5470. "authors": [
  5471. {
  5472. "name": "Fabien Potencier",
  5473. "email": "fabien@symfony.com"
  5474. },
  5475. {
  5476. "name": "Symfony Community",
  5477. "homepage": "https://symfony.com/contributors"
  5478. }
  5479. ],
  5480. "description": "Defines an object-oriented layer for the HTTP specification",
  5481. "homepage": "https://symfony.com",
  5482. "support": {
  5483. "source": "https://github.com/symfony/http-foundation/tree/v5.3.2"
  5484. },
  5485. "funding": [
  5486. {
  5487. "url": "https://symfony.com/sponsor",
  5488. "type": "custom"
  5489. },
  5490. {
  5491. "url": "https://github.com/fabpot",
  5492. "type": "github"
  5493. },
  5494. {
  5495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5496. "type": "tidelift"
  5497. }
  5498. ],
  5499. "time": "2021-06-12T10:15:17+00:00"
  5500. },
  5501. {
  5502. "name": "symfony/http-kernel",
  5503. "version": "v5.3.2",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/symfony/http-kernel.git",
  5507. "reference": "e7021165d9dbfb4051296b8de827e92c8a7b5c87"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e7021165d9dbfb4051296b8de827e92c8a7b5c87",
  5512. "reference": "e7021165d9dbfb4051296b8de827e92c8a7b5c87",
  5513. "shasum": "",
  5514. "mirrors": [
  5515. {
  5516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5517. "preferred": true
  5518. }
  5519. ]
  5520. },
  5521. "require": {
  5522. "php": ">=7.2.5",
  5523. "psr/log": "~1.0",
  5524. "symfony/deprecation-contracts": "^2.1",
  5525. "symfony/error-handler": "^4.4|^5.0",
  5526. "symfony/event-dispatcher": "^5.0",
  5527. "symfony/http-client-contracts": "^1.1|^2",
  5528. "symfony/http-foundation": "^5.3",
  5529. "symfony/polyfill-ctype": "^1.8",
  5530. "symfony/polyfill-php73": "^1.9",
  5531. "symfony/polyfill-php80": "^1.15"
  5532. },
  5533. "conflict": {
  5534. "symfony/browser-kit": "<4.4",
  5535. "symfony/cache": "<5.0",
  5536. "symfony/config": "<5.0",
  5537. "symfony/console": "<4.4",
  5538. "symfony/dependency-injection": "<5.3",
  5539. "symfony/doctrine-bridge": "<5.0",
  5540. "symfony/form": "<5.0",
  5541. "symfony/http-client": "<5.0",
  5542. "symfony/mailer": "<5.0",
  5543. "symfony/messenger": "<5.0",
  5544. "symfony/translation": "<5.0",
  5545. "symfony/twig-bridge": "<5.0",
  5546. "symfony/validator": "<5.0",
  5547. "twig/twig": "<2.13"
  5548. },
  5549. "provide": {
  5550. "psr/log-implementation": "1.0"
  5551. },
  5552. "require-dev": {
  5553. "psr/cache": "^1.0|^2.0|^3.0",
  5554. "symfony/browser-kit": "^4.4|^5.0",
  5555. "symfony/config": "^5.0",
  5556. "symfony/console": "^4.4|^5.0",
  5557. "symfony/css-selector": "^4.4|^5.0",
  5558. "symfony/dependency-injection": "^5.3",
  5559. "symfony/dom-crawler": "^4.4|^5.0",
  5560. "symfony/expression-language": "^4.4|^5.0",
  5561. "symfony/finder": "^4.4|^5.0",
  5562. "symfony/process": "^4.4|^5.0",
  5563. "symfony/routing": "^4.4|^5.0",
  5564. "symfony/stopwatch": "^4.4|^5.0",
  5565. "symfony/translation": "^4.4|^5.0",
  5566. "symfony/translation-contracts": "^1.1|^2",
  5567. "twig/twig": "^2.13|^3.0.4"
  5568. },
  5569. "suggest": {
  5570. "symfony/browser-kit": "",
  5571. "symfony/config": "",
  5572. "symfony/console": "",
  5573. "symfony/dependency-injection": ""
  5574. },
  5575. "type": "library",
  5576. "autoload": {
  5577. "psr-4": {
  5578. "Symfony\\Component\\HttpKernel\\": ""
  5579. },
  5580. "exclude-from-classmap": [
  5581. "/Tests/"
  5582. ]
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Fabien Potencier",
  5591. "email": "fabien@symfony.com"
  5592. },
  5593. {
  5594. "name": "Symfony Community",
  5595. "homepage": "https://symfony.com/contributors"
  5596. }
  5597. ],
  5598. "description": "Provides a structured process for converting a Request into a Response",
  5599. "homepage": "https://symfony.com",
  5600. "support": {
  5601. "source": "https://github.com/symfony/http-kernel/tree/v5.3.2"
  5602. },
  5603. "funding": [
  5604. {
  5605. "url": "https://symfony.com/sponsor",
  5606. "type": "custom"
  5607. },
  5608. {
  5609. "url": "https://github.com/fabpot",
  5610. "type": "github"
  5611. },
  5612. {
  5613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5614. "type": "tidelift"
  5615. }
  5616. ],
  5617. "time": "2021-06-17T14:18:27+00:00"
  5618. },
  5619. {
  5620. "name": "symfony/mime",
  5621. "version": "v5.3.2",
  5622. "source": {
  5623. "type": "git",
  5624. "url": "https://github.com/symfony/mime.git",
  5625. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a"
  5626. },
  5627. "dist": {
  5628. "type": "zip",
  5629. "url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5630. "reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a",
  5631. "shasum": "",
  5632. "mirrors": [
  5633. {
  5634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5635. "preferred": true
  5636. }
  5637. ]
  5638. },
  5639. "require": {
  5640. "php": ">=7.2.5",
  5641. "symfony/deprecation-contracts": "^2.1",
  5642. "symfony/polyfill-intl-idn": "^1.10",
  5643. "symfony/polyfill-mbstring": "^1.0",
  5644. "symfony/polyfill-php80": "^1.15"
  5645. },
  5646. "conflict": {
  5647. "egulias/email-validator": "~3.0.0",
  5648. "phpdocumentor/reflection-docblock": "<3.2.2",
  5649. "phpdocumentor/type-resolver": "<1.4.0",
  5650. "symfony/mailer": "<4.4"
  5651. },
  5652. "require-dev": {
  5653. "egulias/email-validator": "^2.1.10|^3.1",
  5654. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5655. "symfony/dependency-injection": "^4.4|^5.0",
  5656. "symfony/property-access": "^4.4|^5.1",
  5657. "symfony/property-info": "^4.4|^5.1",
  5658. "symfony/serializer": "^5.2"
  5659. },
  5660. "type": "library",
  5661. "autoload": {
  5662. "psr-4": {
  5663. "Symfony\\Component\\Mime\\": ""
  5664. },
  5665. "exclude-from-classmap": [
  5666. "/Tests/"
  5667. ]
  5668. },
  5669. "notification-url": "https://packagist.org/downloads/",
  5670. "license": [
  5671. "MIT"
  5672. ],
  5673. "authors": [
  5674. {
  5675. "name": "Fabien Potencier",
  5676. "email": "fabien@symfony.com"
  5677. },
  5678. {
  5679. "name": "Symfony Community",
  5680. "homepage": "https://symfony.com/contributors"
  5681. }
  5682. ],
  5683. "description": "Allows manipulating MIME messages",
  5684. "homepage": "https://symfony.com",
  5685. "keywords": [
  5686. "mime",
  5687. "mime-type"
  5688. ],
  5689. "support": {
  5690. "source": "https://github.com/symfony/mime/tree/v5.3.2"
  5691. },
  5692. "funding": [
  5693. {
  5694. "url": "https://symfony.com/sponsor",
  5695. "type": "custom"
  5696. },
  5697. {
  5698. "url": "https://github.com/fabpot",
  5699. "type": "github"
  5700. },
  5701. {
  5702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5703. "type": "tidelift"
  5704. }
  5705. ],
  5706. "time": "2021-06-09T10:58:01+00:00"
  5707. },
  5708. {
  5709. "name": "symfony/options-resolver",
  5710. "version": "v5.3.0",
  5711. "source": {
  5712. "type": "git",
  5713. "url": "https://github.com/symfony/options-resolver.git",
  5714. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5"
  5715. },
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/162e886ca035869866d233a2bfef70cc28f9bbe5",
  5719. "reference": "162e886ca035869866d233a2bfef70cc28f9bbe5",
  5720. "shasum": "",
  5721. "mirrors": [
  5722. {
  5723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5724. "preferred": true
  5725. }
  5726. ]
  5727. },
  5728. "require": {
  5729. "php": ">=7.2.5",
  5730. "symfony/deprecation-contracts": "^2.1",
  5731. "symfony/polyfill-php73": "~1.0",
  5732. "symfony/polyfill-php80": "^1.15"
  5733. },
  5734. "type": "library",
  5735. "autoload": {
  5736. "psr-4": {
  5737. "Symfony\\Component\\OptionsResolver\\": ""
  5738. },
  5739. "exclude-from-classmap": [
  5740. "/Tests/"
  5741. ]
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Fabien Potencier",
  5750. "email": "fabien@symfony.com"
  5751. },
  5752. {
  5753. "name": "Symfony Community",
  5754. "homepage": "https://symfony.com/contributors"
  5755. }
  5756. ],
  5757. "description": "Provides an improved replacement for the array_replace PHP function",
  5758. "homepage": "https://symfony.com",
  5759. "keywords": [
  5760. "config",
  5761. "configuration",
  5762. "options"
  5763. ],
  5764. "support": {
  5765. "source": "https://github.com/symfony/options-resolver/tree/v5.3.0"
  5766. },
  5767. "funding": [
  5768. {
  5769. "url": "https://symfony.com/sponsor",
  5770. "type": "custom"
  5771. },
  5772. {
  5773. "url": "https://github.com/fabpot",
  5774. "type": "github"
  5775. },
  5776. {
  5777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5778. "type": "tidelift"
  5779. }
  5780. ],
  5781. "time": "2021-05-26T17:43:10+00:00"
  5782. },
  5783. {
  5784. "name": "symfony/polyfill-ctype",
  5785. "version": "v1.23.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/symfony/polyfill-ctype.git",
  5789. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5794. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5795. "shasum": "",
  5796. "mirrors": [
  5797. {
  5798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5799. "preferred": true
  5800. }
  5801. ]
  5802. },
  5803. "require": {
  5804. "php": ">=7.1"
  5805. },
  5806. "suggest": {
  5807. "ext-ctype": "For best performance"
  5808. },
  5809. "type": "library",
  5810. "extra": {
  5811. "branch-alias": {
  5812. "dev-main": "1.23-dev"
  5813. },
  5814. "thanks": {
  5815. "name": "symfony/polyfill",
  5816. "url": "https://github.com/symfony/polyfill"
  5817. }
  5818. },
  5819. "autoload": {
  5820. "psr-4": {
  5821. "Symfony\\Polyfill\\Ctype\\": ""
  5822. },
  5823. "files": [
  5824. "bootstrap.php"
  5825. ]
  5826. },
  5827. "notification-url": "https://packagist.org/downloads/",
  5828. "license": [
  5829. "MIT"
  5830. ],
  5831. "authors": [
  5832. {
  5833. "name": "Gert de Pagter",
  5834. "email": "BackEndTea@gmail.com"
  5835. },
  5836. {
  5837. "name": "Symfony Community",
  5838. "homepage": "https://symfony.com/contributors"
  5839. }
  5840. ],
  5841. "description": "Symfony polyfill for ctype functions",
  5842. "homepage": "https://symfony.com",
  5843. "keywords": [
  5844. "compatibility",
  5845. "ctype",
  5846. "polyfill",
  5847. "portable"
  5848. ],
  5849. "support": {
  5850. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5851. },
  5852. "funding": [
  5853. {
  5854. "url": "https://symfony.com/sponsor",
  5855. "type": "custom"
  5856. },
  5857. {
  5858. "url": "https://github.com/fabpot",
  5859. "type": "github"
  5860. },
  5861. {
  5862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5863. "type": "tidelift"
  5864. }
  5865. ],
  5866. "time": "2021-02-19T12:13:01+00:00"
  5867. },
  5868. {
  5869. "name": "symfony/polyfill-iconv",
  5870. "version": "v1.23.0",
  5871. "source": {
  5872. "type": "git",
  5873. "url": "https://github.com/symfony/polyfill-iconv.git",
  5874. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5875. },
  5876. "dist": {
  5877. "type": "zip",
  5878. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5879. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5880. "shasum": "",
  5881. "mirrors": [
  5882. {
  5883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5884. "preferred": true
  5885. }
  5886. ]
  5887. },
  5888. "require": {
  5889. "php": ">=7.1"
  5890. },
  5891. "suggest": {
  5892. "ext-iconv": "For best performance"
  5893. },
  5894. "type": "library",
  5895. "extra": {
  5896. "branch-alias": {
  5897. "dev-main": "1.23-dev"
  5898. },
  5899. "thanks": {
  5900. "name": "symfony/polyfill",
  5901. "url": "https://github.com/symfony/polyfill"
  5902. }
  5903. },
  5904. "autoload": {
  5905. "psr-4": {
  5906. "Symfony\\Polyfill\\Iconv\\": ""
  5907. },
  5908. "files": [
  5909. "bootstrap.php"
  5910. ]
  5911. },
  5912. "notification-url": "https://packagist.org/downloads/",
  5913. "license": [
  5914. "MIT"
  5915. ],
  5916. "authors": [
  5917. {
  5918. "name": "Nicolas Grekas",
  5919. "email": "p@tchwork.com"
  5920. },
  5921. {
  5922. "name": "Symfony Community",
  5923. "homepage": "https://symfony.com/contributors"
  5924. }
  5925. ],
  5926. "description": "Symfony polyfill for the Iconv extension",
  5927. "homepage": "https://symfony.com",
  5928. "keywords": [
  5929. "compatibility",
  5930. "iconv",
  5931. "polyfill",
  5932. "portable",
  5933. "shim"
  5934. ],
  5935. "support": {
  5936. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  5937. },
  5938. "funding": [
  5939. {
  5940. "url": "https://symfony.com/sponsor",
  5941. "type": "custom"
  5942. },
  5943. {
  5944. "url": "https://github.com/fabpot",
  5945. "type": "github"
  5946. },
  5947. {
  5948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5949. "type": "tidelift"
  5950. }
  5951. ],
  5952. "time": "2021-05-27T09:27:20+00:00"
  5953. },
  5954. {
  5955. "name": "symfony/polyfill-intl-grapheme",
  5956. "version": "v1.23.0",
  5957. "source": {
  5958. "type": "git",
  5959. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5960. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
  5961. },
  5962. "dist": {
  5963. "type": "zip",
  5964. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5965. "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
  5966. "shasum": "",
  5967. "mirrors": [
  5968. {
  5969. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5970. "preferred": true
  5971. }
  5972. ]
  5973. },
  5974. "require": {
  5975. "php": ">=7.1"
  5976. },
  5977. "suggest": {
  5978. "ext-intl": "For best performance"
  5979. },
  5980. "type": "library",
  5981. "extra": {
  5982. "branch-alias": {
  5983. "dev-main": "1.23-dev"
  5984. },
  5985. "thanks": {
  5986. "name": "symfony/polyfill",
  5987. "url": "https://github.com/symfony/polyfill"
  5988. }
  5989. },
  5990. "autoload": {
  5991. "psr-4": {
  5992. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5993. },
  5994. "files": [
  5995. "bootstrap.php"
  5996. ]
  5997. },
  5998. "notification-url": "https://packagist.org/downloads/",
  5999. "license": [
  6000. "MIT"
  6001. ],
  6002. "authors": [
  6003. {
  6004. "name": "Nicolas Grekas",
  6005. "email": "p@tchwork.com"
  6006. },
  6007. {
  6008. "name": "Symfony Community",
  6009. "homepage": "https://symfony.com/contributors"
  6010. }
  6011. ],
  6012. "description": "Symfony polyfill for intl's grapheme_* functions",
  6013. "homepage": "https://symfony.com",
  6014. "keywords": [
  6015. "compatibility",
  6016. "grapheme",
  6017. "intl",
  6018. "polyfill",
  6019. "portable",
  6020. "shim"
  6021. ],
  6022. "support": {
  6023. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
  6024. },
  6025. "funding": [
  6026. {
  6027. "url": "https://symfony.com/sponsor",
  6028. "type": "custom"
  6029. },
  6030. {
  6031. "url": "https://github.com/fabpot",
  6032. "type": "github"
  6033. },
  6034. {
  6035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6036. "type": "tidelift"
  6037. }
  6038. ],
  6039. "time": "2021-05-27T09:17:38+00:00"
  6040. },
  6041. {
  6042. "name": "symfony/polyfill-intl-idn",
  6043. "version": "v1.23.0",
  6044. "source": {
  6045. "type": "git",
  6046. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6047. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6048. },
  6049. "dist": {
  6050. "type": "zip",
  6051. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6052. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6053. "shasum": "",
  6054. "mirrors": [
  6055. {
  6056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6057. "preferred": true
  6058. }
  6059. ]
  6060. },
  6061. "require": {
  6062. "php": ">=7.1",
  6063. "symfony/polyfill-intl-normalizer": "^1.10",
  6064. "symfony/polyfill-php72": "^1.10"
  6065. },
  6066. "suggest": {
  6067. "ext-intl": "For best performance"
  6068. },
  6069. "type": "library",
  6070. "extra": {
  6071. "branch-alias": {
  6072. "dev-main": "1.23-dev"
  6073. },
  6074. "thanks": {
  6075. "name": "symfony/polyfill",
  6076. "url": "https://github.com/symfony/polyfill"
  6077. }
  6078. },
  6079. "autoload": {
  6080. "psr-4": {
  6081. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6082. },
  6083. "files": [
  6084. "bootstrap.php"
  6085. ]
  6086. },
  6087. "notification-url": "https://packagist.org/downloads/",
  6088. "license": [
  6089. "MIT"
  6090. ],
  6091. "authors": [
  6092. {
  6093. "name": "Laurent Bassin",
  6094. "email": "laurent@bassin.info"
  6095. },
  6096. {
  6097. "name": "Trevor Rowbotham",
  6098. "email": "trevor.rowbotham@pm.me"
  6099. },
  6100. {
  6101. "name": "Symfony Community",
  6102. "homepage": "https://symfony.com/contributors"
  6103. }
  6104. ],
  6105. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6106. "homepage": "https://symfony.com",
  6107. "keywords": [
  6108. "compatibility",
  6109. "idn",
  6110. "intl",
  6111. "polyfill",
  6112. "portable",
  6113. "shim"
  6114. ],
  6115. "support": {
  6116. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6117. },
  6118. "funding": [
  6119. {
  6120. "url": "https://symfony.com/sponsor",
  6121. "type": "custom"
  6122. },
  6123. {
  6124. "url": "https://github.com/fabpot",
  6125. "type": "github"
  6126. },
  6127. {
  6128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6129. "type": "tidelift"
  6130. }
  6131. ],
  6132. "time": "2021-05-27T09:27:20+00:00"
  6133. },
  6134. {
  6135. "name": "symfony/polyfill-intl-normalizer",
  6136. "version": "v1.23.0",
  6137. "source": {
  6138. "type": "git",
  6139. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6140. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6141. },
  6142. "dist": {
  6143. "type": "zip",
  6144. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6145. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6146. "shasum": "",
  6147. "mirrors": [
  6148. {
  6149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6150. "preferred": true
  6151. }
  6152. ]
  6153. },
  6154. "require": {
  6155. "php": ">=7.1"
  6156. },
  6157. "suggest": {
  6158. "ext-intl": "For best performance"
  6159. },
  6160. "type": "library",
  6161. "extra": {
  6162. "branch-alias": {
  6163. "dev-main": "1.23-dev"
  6164. },
  6165. "thanks": {
  6166. "name": "symfony/polyfill",
  6167. "url": "https://github.com/symfony/polyfill"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "psr-4": {
  6172. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6173. },
  6174. "files": [
  6175. "bootstrap.php"
  6176. ],
  6177. "classmap": [
  6178. "Resources/stubs"
  6179. ]
  6180. },
  6181. "notification-url": "https://packagist.org/downloads/",
  6182. "license": [
  6183. "MIT"
  6184. ],
  6185. "authors": [
  6186. {
  6187. "name": "Nicolas Grekas",
  6188. "email": "p@tchwork.com"
  6189. },
  6190. {
  6191. "name": "Symfony Community",
  6192. "homepage": "https://symfony.com/contributors"
  6193. }
  6194. ],
  6195. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6196. "homepage": "https://symfony.com",
  6197. "keywords": [
  6198. "compatibility",
  6199. "intl",
  6200. "normalizer",
  6201. "polyfill",
  6202. "portable",
  6203. "shim"
  6204. ],
  6205. "support": {
  6206. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6207. },
  6208. "funding": [
  6209. {
  6210. "url": "https://symfony.com/sponsor",
  6211. "type": "custom"
  6212. },
  6213. {
  6214. "url": "https://github.com/fabpot",
  6215. "type": "github"
  6216. },
  6217. {
  6218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6219. "type": "tidelift"
  6220. }
  6221. ],
  6222. "time": "2021-02-19T12:13:01+00:00"
  6223. },
  6224. {
  6225. "name": "symfony/polyfill-mbstring",
  6226. "version": "v1.23.0",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6230. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6235. "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
  6236. "shasum": "",
  6237. "mirrors": [
  6238. {
  6239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6240. "preferred": true
  6241. }
  6242. ]
  6243. },
  6244. "require": {
  6245. "php": ">=7.1"
  6246. },
  6247. "suggest": {
  6248. "ext-mbstring": "For best performance"
  6249. },
  6250. "type": "library",
  6251. "extra": {
  6252. "branch-alias": {
  6253. "dev-main": "1.23-dev"
  6254. },
  6255. "thanks": {
  6256. "name": "symfony/polyfill",
  6257. "url": "https://github.com/symfony/polyfill"
  6258. }
  6259. },
  6260. "autoload": {
  6261. "psr-4": {
  6262. "Symfony\\Polyfill\\Mbstring\\": ""
  6263. },
  6264. "files": [
  6265. "bootstrap.php"
  6266. ]
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Nicolas Grekas",
  6275. "email": "p@tchwork.com"
  6276. },
  6277. {
  6278. "name": "Symfony Community",
  6279. "homepage": "https://symfony.com/contributors"
  6280. }
  6281. ],
  6282. "description": "Symfony polyfill for the Mbstring extension",
  6283. "homepage": "https://symfony.com",
  6284. "keywords": [
  6285. "compatibility",
  6286. "mbstring",
  6287. "polyfill",
  6288. "portable",
  6289. "shim"
  6290. ],
  6291. "support": {
  6292. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
  6293. },
  6294. "funding": [
  6295. {
  6296. "url": "https://symfony.com/sponsor",
  6297. "type": "custom"
  6298. },
  6299. {
  6300. "url": "https://github.com/fabpot",
  6301. "type": "github"
  6302. },
  6303. {
  6304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6305. "type": "tidelift"
  6306. }
  6307. ],
  6308. "time": "2021-05-27T09:27:20+00:00"
  6309. },
  6310. {
  6311. "name": "symfony/polyfill-php72",
  6312. "version": "v1.23.0",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://github.com/symfony/polyfill-php72.git",
  6316. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6321. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6322. "shasum": "",
  6323. "mirrors": [
  6324. {
  6325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6326. "preferred": true
  6327. }
  6328. ]
  6329. },
  6330. "require": {
  6331. "php": ">=7.1"
  6332. },
  6333. "type": "library",
  6334. "extra": {
  6335. "branch-alias": {
  6336. "dev-main": "1.23-dev"
  6337. },
  6338. "thanks": {
  6339. "name": "symfony/polyfill",
  6340. "url": "https://github.com/symfony/polyfill"
  6341. }
  6342. },
  6343. "autoload": {
  6344. "psr-4": {
  6345. "Symfony\\Polyfill\\Php72\\": ""
  6346. },
  6347. "files": [
  6348. "bootstrap.php"
  6349. ]
  6350. },
  6351. "notification-url": "https://packagist.org/downloads/",
  6352. "license": [
  6353. "MIT"
  6354. ],
  6355. "authors": [
  6356. {
  6357. "name": "Nicolas Grekas",
  6358. "email": "p@tchwork.com"
  6359. },
  6360. {
  6361. "name": "Symfony Community",
  6362. "homepage": "https://symfony.com/contributors"
  6363. }
  6364. ],
  6365. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6366. "homepage": "https://symfony.com",
  6367. "keywords": [
  6368. "compatibility",
  6369. "polyfill",
  6370. "portable",
  6371. "shim"
  6372. ],
  6373. "support": {
  6374. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6375. },
  6376. "funding": [
  6377. {
  6378. "url": "https://symfony.com/sponsor",
  6379. "type": "custom"
  6380. },
  6381. {
  6382. "url": "https://github.com/fabpot",
  6383. "type": "github"
  6384. },
  6385. {
  6386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6387. "type": "tidelift"
  6388. }
  6389. ],
  6390. "time": "2021-05-27T09:17:38+00:00"
  6391. },
  6392. {
  6393. "name": "symfony/polyfill-php73",
  6394. "version": "v1.23.0",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://github.com/symfony/polyfill-php73.git",
  6398. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6403. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6404. "shasum": "",
  6405. "mirrors": [
  6406. {
  6407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6408. "preferred": true
  6409. }
  6410. ]
  6411. },
  6412. "require": {
  6413. "php": ">=7.1"
  6414. },
  6415. "type": "library",
  6416. "extra": {
  6417. "branch-alias": {
  6418. "dev-main": "1.23-dev"
  6419. },
  6420. "thanks": {
  6421. "name": "symfony/polyfill",
  6422. "url": "https://github.com/symfony/polyfill"
  6423. }
  6424. },
  6425. "autoload": {
  6426. "psr-4": {
  6427. "Symfony\\Polyfill\\Php73\\": ""
  6428. },
  6429. "files": [
  6430. "bootstrap.php"
  6431. ],
  6432. "classmap": [
  6433. "Resources/stubs"
  6434. ]
  6435. },
  6436. "notification-url": "https://packagist.org/downloads/",
  6437. "license": [
  6438. "MIT"
  6439. ],
  6440. "authors": [
  6441. {
  6442. "name": "Nicolas Grekas",
  6443. "email": "p@tchwork.com"
  6444. },
  6445. {
  6446. "name": "Symfony Community",
  6447. "homepage": "https://symfony.com/contributors"
  6448. }
  6449. ],
  6450. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6451. "homepage": "https://symfony.com",
  6452. "keywords": [
  6453. "compatibility",
  6454. "polyfill",
  6455. "portable",
  6456. "shim"
  6457. ],
  6458. "support": {
  6459. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6460. },
  6461. "funding": [
  6462. {
  6463. "url": "https://symfony.com/sponsor",
  6464. "type": "custom"
  6465. },
  6466. {
  6467. "url": "https://github.com/fabpot",
  6468. "type": "github"
  6469. },
  6470. {
  6471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6472. "type": "tidelift"
  6473. }
  6474. ],
  6475. "time": "2021-02-19T12:13:01+00:00"
  6476. },
  6477. {
  6478. "name": "symfony/polyfill-php80",
  6479. "version": "v1.23.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/symfony/polyfill-php80.git",
  6483. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6488. "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
  6489. "shasum": "",
  6490. "mirrors": [
  6491. {
  6492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6493. "preferred": true
  6494. }
  6495. ]
  6496. },
  6497. "require": {
  6498. "php": ">=7.1"
  6499. },
  6500. "type": "library",
  6501. "extra": {
  6502. "branch-alias": {
  6503. "dev-main": "1.23-dev"
  6504. },
  6505. "thanks": {
  6506. "name": "symfony/polyfill",
  6507. "url": "https://github.com/symfony/polyfill"
  6508. }
  6509. },
  6510. "autoload": {
  6511. "psr-4": {
  6512. "Symfony\\Polyfill\\Php80\\": ""
  6513. },
  6514. "files": [
  6515. "bootstrap.php"
  6516. ],
  6517. "classmap": [
  6518. "Resources/stubs"
  6519. ]
  6520. },
  6521. "notification-url": "https://packagist.org/downloads/",
  6522. "license": [
  6523. "MIT"
  6524. ],
  6525. "authors": [
  6526. {
  6527. "name": "Ion Bazan",
  6528. "email": "ion.bazan@gmail.com"
  6529. },
  6530. {
  6531. "name": "Nicolas Grekas",
  6532. "email": "p@tchwork.com"
  6533. },
  6534. {
  6535. "name": "Symfony Community",
  6536. "homepage": "https://symfony.com/contributors"
  6537. }
  6538. ],
  6539. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6540. "homepage": "https://symfony.com",
  6541. "keywords": [
  6542. "compatibility",
  6543. "polyfill",
  6544. "portable",
  6545. "shim"
  6546. ],
  6547. "support": {
  6548. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
  6549. },
  6550. "funding": [
  6551. {
  6552. "url": "https://symfony.com/sponsor",
  6553. "type": "custom"
  6554. },
  6555. {
  6556. "url": "https://github.com/fabpot",
  6557. "type": "github"
  6558. },
  6559. {
  6560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6561. "type": "tidelift"
  6562. }
  6563. ],
  6564. "time": "2021-02-19T12:13:01+00:00"
  6565. },
  6566. {
  6567. "name": "symfony/process",
  6568. "version": "v5.3.2",
  6569. "source": {
  6570. "type": "git",
  6571. "url": "https://github.com/symfony/process.git",
  6572. "reference": "714b47f9196de61a196d86c4bad5f09201b307df"
  6573. },
  6574. "dist": {
  6575. "type": "zip",
  6576. "url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df",
  6577. "reference": "714b47f9196de61a196d86c4bad5f09201b307df",
  6578. "shasum": "",
  6579. "mirrors": [
  6580. {
  6581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6582. "preferred": true
  6583. }
  6584. ]
  6585. },
  6586. "require": {
  6587. "php": ">=7.2.5",
  6588. "symfony/polyfill-php80": "^1.15"
  6589. },
  6590. "type": "library",
  6591. "autoload": {
  6592. "psr-4": {
  6593. "Symfony\\Component\\Process\\": ""
  6594. },
  6595. "exclude-from-classmap": [
  6596. "/Tests/"
  6597. ]
  6598. },
  6599. "notification-url": "https://packagist.org/downloads/",
  6600. "license": [
  6601. "MIT"
  6602. ],
  6603. "authors": [
  6604. {
  6605. "name": "Fabien Potencier",
  6606. "email": "fabien@symfony.com"
  6607. },
  6608. {
  6609. "name": "Symfony Community",
  6610. "homepage": "https://symfony.com/contributors"
  6611. }
  6612. ],
  6613. "description": "Executes commands in sub-processes",
  6614. "homepage": "https://symfony.com",
  6615. "support": {
  6616. "source": "https://github.com/symfony/process/tree/v5.3.2"
  6617. },
  6618. "funding": [
  6619. {
  6620. "url": "https://symfony.com/sponsor",
  6621. "type": "custom"
  6622. },
  6623. {
  6624. "url": "https://github.com/fabpot",
  6625. "type": "github"
  6626. },
  6627. {
  6628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6629. "type": "tidelift"
  6630. }
  6631. ],
  6632. "time": "2021-06-12T10:15:01+00:00"
  6633. },
  6634. {
  6635. "name": "symfony/property-access",
  6636. "version": "v5.3.0",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://github.com/symfony/property-access.git",
  6640. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://api.github.com/repos/symfony/property-access/zipball/8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6645. "reference": "8988399a556cffb0fba9bb3603f8d1ba4543eceb",
  6646. "shasum": "",
  6647. "mirrors": [
  6648. {
  6649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6650. "preferred": true
  6651. }
  6652. ]
  6653. },
  6654. "require": {
  6655. "php": ">=7.2.5",
  6656. "symfony/deprecation-contracts": "^2.1",
  6657. "symfony/polyfill-php80": "^1.15",
  6658. "symfony/property-info": "^5.2"
  6659. },
  6660. "require-dev": {
  6661. "symfony/cache": "^4.4|^5.0"
  6662. },
  6663. "suggest": {
  6664. "psr/cache-implementation": "To cache access methods."
  6665. },
  6666. "type": "library",
  6667. "autoload": {
  6668. "psr-4": {
  6669. "Symfony\\Component\\PropertyAccess\\": ""
  6670. },
  6671. "exclude-from-classmap": [
  6672. "/Tests/"
  6673. ]
  6674. },
  6675. "notification-url": "https://packagist.org/downloads/",
  6676. "license": [
  6677. "MIT"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Fabien Potencier",
  6682. "email": "fabien@symfony.com"
  6683. },
  6684. {
  6685. "name": "Symfony Community",
  6686. "homepage": "https://symfony.com/contributors"
  6687. }
  6688. ],
  6689. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  6690. "homepage": "https://symfony.com",
  6691. "keywords": [
  6692. "access",
  6693. "array",
  6694. "extraction",
  6695. "index",
  6696. "injection",
  6697. "object",
  6698. "property",
  6699. "property path",
  6700. "reflection"
  6701. ],
  6702. "support": {
  6703. "source": "https://github.com/symfony/property-access/tree/v5.3.0"
  6704. },
  6705. "funding": [
  6706. {
  6707. "url": "https://symfony.com/sponsor",
  6708. "type": "custom"
  6709. },
  6710. {
  6711. "url": "https://github.com/fabpot",
  6712. "type": "github"
  6713. },
  6714. {
  6715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6716. "type": "tidelift"
  6717. }
  6718. ],
  6719. "time": "2021-05-26T17:43:10+00:00"
  6720. },
  6721. {
  6722. "name": "symfony/property-info",
  6723. "version": "v5.3.1",
  6724. "source": {
  6725. "type": "git",
  6726. "url": "https://github.com/symfony/property-info.git",
  6727. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf"
  6728. },
  6729. "dist": {
  6730. "type": "zip",
  6731. "url": "https://api.github.com/repos/symfony/property-info/zipball/6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6732. "reference": "6f8bff281f215dbf41929c7ec6f8309cdc0912cf",
  6733. "shasum": "",
  6734. "mirrors": [
  6735. {
  6736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6737. "preferred": true
  6738. }
  6739. ]
  6740. },
  6741. "require": {
  6742. "php": ">=7.2.5",
  6743. "symfony/deprecation-contracts": "^2.1",
  6744. "symfony/polyfill-php80": "^1.15",
  6745. "symfony/string": "^5.1"
  6746. },
  6747. "conflict": {
  6748. "phpdocumentor/reflection-docblock": "<3.2.2",
  6749. "phpdocumentor/type-resolver": "<1.4.0",
  6750. "symfony/dependency-injection": "<4.4"
  6751. },
  6752. "require-dev": {
  6753. "doctrine/annotations": "^1.10.4",
  6754. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6755. "symfony/cache": "^4.4|^5.0",
  6756. "symfony/dependency-injection": "^4.4|^5.0",
  6757. "symfony/serializer": "^4.4|^5.0"
  6758. },
  6759. "suggest": {
  6760. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  6761. "psr/cache-implementation": "To cache results",
  6762. "symfony/doctrine-bridge": "To use Doctrine metadata",
  6763. "symfony/serializer": "To use Serializer metadata"
  6764. },
  6765. "type": "library",
  6766. "autoload": {
  6767. "psr-4": {
  6768. "Symfony\\Component\\PropertyInfo\\": ""
  6769. },
  6770. "exclude-from-classmap": [
  6771. "/Tests/"
  6772. ]
  6773. },
  6774. "notification-url": "https://packagist.org/downloads/",
  6775. "license": [
  6776. "MIT"
  6777. ],
  6778. "authors": [
  6779. {
  6780. "name": "Kévin Dunglas",
  6781. "email": "dunglas@gmail.com"
  6782. },
  6783. {
  6784. "name": "Symfony Community",
  6785. "homepage": "https://symfony.com/contributors"
  6786. }
  6787. ],
  6788. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  6789. "homepage": "https://symfony.com",
  6790. "keywords": [
  6791. "doctrine",
  6792. "phpdoc",
  6793. "property",
  6794. "symfony",
  6795. "type",
  6796. "validator"
  6797. ],
  6798. "support": {
  6799. "source": "https://github.com/symfony/property-info/tree/v5.3.1"
  6800. },
  6801. "funding": [
  6802. {
  6803. "url": "https://symfony.com/sponsor",
  6804. "type": "custom"
  6805. },
  6806. {
  6807. "url": "https://github.com/fabpot",
  6808. "type": "github"
  6809. },
  6810. {
  6811. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6812. "type": "tidelift"
  6813. }
  6814. ],
  6815. "time": "2021-05-31T12:40:48+00:00"
  6816. },
  6817. {
  6818. "name": "symfony/routing",
  6819. "version": "v5.3.0",
  6820. "source": {
  6821. "type": "git",
  6822. "url": "https://github.com/symfony/routing.git",
  6823. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199"
  6824. },
  6825. "dist": {
  6826. "type": "zip",
  6827. "url": "https://api.github.com/repos/symfony/routing/zipball/368e81376a8e049c37cb80ae87dbfbf411279199",
  6828. "reference": "368e81376a8e049c37cb80ae87dbfbf411279199",
  6829. "shasum": "",
  6830. "mirrors": [
  6831. {
  6832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6833. "preferred": true
  6834. }
  6835. ]
  6836. },
  6837. "require": {
  6838. "php": ">=7.2.5",
  6839. "symfony/deprecation-contracts": "^2.1",
  6840. "symfony/polyfill-php80": "^1.15"
  6841. },
  6842. "conflict": {
  6843. "doctrine/annotations": "<1.12",
  6844. "symfony/config": "<5.3",
  6845. "symfony/dependency-injection": "<4.4",
  6846. "symfony/yaml": "<4.4"
  6847. },
  6848. "require-dev": {
  6849. "doctrine/annotations": "^1.12",
  6850. "psr/log": "~1.0",
  6851. "symfony/config": "^5.3",
  6852. "symfony/dependency-injection": "^4.4|^5.0",
  6853. "symfony/expression-language": "^4.4|^5.0",
  6854. "symfony/http-foundation": "^4.4|^5.0",
  6855. "symfony/yaml": "^4.4|^5.0"
  6856. },
  6857. "suggest": {
  6858. "symfony/config": "For using the all-in-one router or any loader",
  6859. "symfony/expression-language": "For using expression matching",
  6860. "symfony/http-foundation": "For using a Symfony Request object",
  6861. "symfony/yaml": "For using the YAML loader"
  6862. },
  6863. "type": "library",
  6864. "autoload": {
  6865. "psr-4": {
  6866. "Symfony\\Component\\Routing\\": ""
  6867. },
  6868. "exclude-from-classmap": [
  6869. "/Tests/"
  6870. ]
  6871. },
  6872. "notification-url": "https://packagist.org/downloads/",
  6873. "license": [
  6874. "MIT"
  6875. ],
  6876. "authors": [
  6877. {
  6878. "name": "Fabien Potencier",
  6879. "email": "fabien@symfony.com"
  6880. },
  6881. {
  6882. "name": "Symfony Community",
  6883. "homepage": "https://symfony.com/contributors"
  6884. }
  6885. ],
  6886. "description": "Maps an HTTP request to a set of configuration variables",
  6887. "homepage": "https://symfony.com",
  6888. "keywords": [
  6889. "router",
  6890. "routing",
  6891. "uri",
  6892. "url"
  6893. ],
  6894. "support": {
  6895. "source": "https://github.com/symfony/routing/tree/v5.3.0"
  6896. },
  6897. "funding": [
  6898. {
  6899. "url": "https://symfony.com/sponsor",
  6900. "type": "custom"
  6901. },
  6902. {
  6903. "url": "https://github.com/fabpot",
  6904. "type": "github"
  6905. },
  6906. {
  6907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6908. "type": "tidelift"
  6909. }
  6910. ],
  6911. "time": "2021-05-26T17:43:10+00:00"
  6912. },
  6913. {
  6914. "name": "symfony/service-contracts",
  6915. "version": "v2.4.0",
  6916. "source": {
  6917. "type": "git",
  6918. "url": "https://github.com/symfony/service-contracts.git",
  6919. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6920. },
  6921. "dist": {
  6922. "type": "zip",
  6923. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6924. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6925. "shasum": "",
  6926. "mirrors": [
  6927. {
  6928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6929. "preferred": true
  6930. }
  6931. ]
  6932. },
  6933. "require": {
  6934. "php": ">=7.2.5",
  6935. "psr/container": "^1.1"
  6936. },
  6937. "suggest": {
  6938. "symfony/service-implementation": ""
  6939. },
  6940. "type": "library",
  6941. "extra": {
  6942. "branch-alias": {
  6943. "dev-main": "2.4-dev"
  6944. },
  6945. "thanks": {
  6946. "name": "symfony/contracts",
  6947. "url": "https://github.com/symfony/contracts"
  6948. }
  6949. },
  6950. "autoload": {
  6951. "psr-4": {
  6952. "Symfony\\Contracts\\Service\\": ""
  6953. }
  6954. },
  6955. "notification-url": "https://packagist.org/downloads/",
  6956. "license": [
  6957. "MIT"
  6958. ],
  6959. "authors": [
  6960. {
  6961. "name": "Nicolas Grekas",
  6962. "email": "p@tchwork.com"
  6963. },
  6964. {
  6965. "name": "Symfony Community",
  6966. "homepage": "https://symfony.com/contributors"
  6967. }
  6968. ],
  6969. "description": "Generic abstractions related to writing services",
  6970. "homepage": "https://symfony.com",
  6971. "keywords": [
  6972. "abstractions",
  6973. "contracts",
  6974. "decoupling",
  6975. "interfaces",
  6976. "interoperability",
  6977. "standards"
  6978. ],
  6979. "support": {
  6980. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  6981. },
  6982. "funding": [
  6983. {
  6984. "url": "https://symfony.com/sponsor",
  6985. "type": "custom"
  6986. },
  6987. {
  6988. "url": "https://github.com/fabpot",
  6989. "type": "github"
  6990. },
  6991. {
  6992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6993. "type": "tidelift"
  6994. }
  6995. ],
  6996. "time": "2021-04-01T10:43:52+00:00"
  6997. },
  6998. {
  6999. "name": "symfony/string",
  7000. "version": "v5.3.2",
  7001. "source": {
  7002. "type": "git",
  7003. "url": "https://github.com/symfony/string.git",
  7004. "reference": "0732e97e41c0a590f77e231afc16a327375d50b0"
  7005. },
  7006. "dist": {
  7007. "type": "zip",
  7008. "url": "https://api.github.com/repos/symfony/string/zipball/0732e97e41c0a590f77e231afc16a327375d50b0",
  7009. "reference": "0732e97e41c0a590f77e231afc16a327375d50b0",
  7010. "shasum": "",
  7011. "mirrors": [
  7012. {
  7013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7014. "preferred": true
  7015. }
  7016. ]
  7017. },
  7018. "require": {
  7019. "php": ">=7.2.5",
  7020. "symfony/polyfill-ctype": "~1.8",
  7021. "symfony/polyfill-intl-grapheme": "~1.0",
  7022. "symfony/polyfill-intl-normalizer": "~1.0",
  7023. "symfony/polyfill-mbstring": "~1.0",
  7024. "symfony/polyfill-php80": "~1.15"
  7025. },
  7026. "require-dev": {
  7027. "symfony/error-handler": "^4.4|^5.0",
  7028. "symfony/http-client": "^4.4|^5.0",
  7029. "symfony/translation-contracts": "^1.1|^2",
  7030. "symfony/var-exporter": "^4.4|^5.0"
  7031. },
  7032. "type": "library",
  7033. "autoload": {
  7034. "psr-4": {
  7035. "Symfony\\Component\\String\\": ""
  7036. },
  7037. "files": [
  7038. "Resources/functions.php"
  7039. ],
  7040. "exclude-from-classmap": [
  7041. "/Tests/"
  7042. ]
  7043. },
  7044. "notification-url": "https://packagist.org/downloads/",
  7045. "license": [
  7046. "MIT"
  7047. ],
  7048. "authors": [
  7049. {
  7050. "name": "Nicolas Grekas",
  7051. "email": "p@tchwork.com"
  7052. },
  7053. {
  7054. "name": "Symfony Community",
  7055. "homepage": "https://symfony.com/contributors"
  7056. }
  7057. ],
  7058. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7059. "homepage": "https://symfony.com",
  7060. "keywords": [
  7061. "grapheme",
  7062. "i18n",
  7063. "string",
  7064. "unicode",
  7065. "utf-8",
  7066. "utf8"
  7067. ],
  7068. "support": {
  7069. "source": "https://github.com/symfony/string/tree/v5.3.2"
  7070. },
  7071. "funding": [
  7072. {
  7073. "url": "https://symfony.com/sponsor",
  7074. "type": "custom"
  7075. },
  7076. {
  7077. "url": "https://github.com/fabpot",
  7078. "type": "github"
  7079. },
  7080. {
  7081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7082. "type": "tidelift"
  7083. }
  7084. ],
  7085. "time": "2021-06-06T09:51:56+00:00"
  7086. },
  7087. {
  7088. "name": "symfony/translation",
  7089. "version": "v5.3.2",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/symfony/translation.git",
  7093. "reference": "7e2603bcc598e14804c4d2359d8dc4ee3c40391b"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/symfony/translation/zipball/7e2603bcc598e14804c4d2359d8dc4ee3c40391b",
  7098. "reference": "7e2603bcc598e14804c4d2359d8dc4ee3c40391b",
  7099. "shasum": "",
  7100. "mirrors": [
  7101. {
  7102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7103. "preferred": true
  7104. }
  7105. ]
  7106. },
  7107. "require": {
  7108. "php": ">=7.2.5",
  7109. "symfony/deprecation-contracts": "^2.1",
  7110. "symfony/polyfill-mbstring": "~1.0",
  7111. "symfony/polyfill-php80": "^1.15",
  7112. "symfony/translation-contracts": "^2.3"
  7113. },
  7114. "conflict": {
  7115. "symfony/config": "<4.4",
  7116. "symfony/dependency-injection": "<5.0",
  7117. "symfony/http-kernel": "<5.0",
  7118. "symfony/twig-bundle": "<5.0",
  7119. "symfony/yaml": "<4.4"
  7120. },
  7121. "provide": {
  7122. "symfony/translation-implementation": "2.3"
  7123. },
  7124. "require-dev": {
  7125. "psr/log": "~1.0",
  7126. "symfony/config": "^4.4|^5.0",
  7127. "symfony/console": "^4.4|^5.0",
  7128. "symfony/dependency-injection": "^5.0",
  7129. "symfony/finder": "^4.4|^5.0",
  7130. "symfony/http-kernel": "^5.0",
  7131. "symfony/intl": "^4.4|^5.0",
  7132. "symfony/polyfill-intl-icu": "^1.21",
  7133. "symfony/service-contracts": "^1.1.2|^2",
  7134. "symfony/yaml": "^4.4|^5.0"
  7135. },
  7136. "suggest": {
  7137. "psr/log-implementation": "To use logging capability in translator",
  7138. "symfony/config": "",
  7139. "symfony/yaml": ""
  7140. },
  7141. "type": "library",
  7142. "autoload": {
  7143. "files": [
  7144. "Resources/functions.php"
  7145. ],
  7146. "psr-4": {
  7147. "Symfony\\Component\\Translation\\": ""
  7148. },
  7149. "exclude-from-classmap": [
  7150. "/Tests/"
  7151. ]
  7152. },
  7153. "notification-url": "https://packagist.org/downloads/",
  7154. "license": [
  7155. "MIT"
  7156. ],
  7157. "authors": [
  7158. {
  7159. "name": "Fabien Potencier",
  7160. "email": "fabien@symfony.com"
  7161. },
  7162. {
  7163. "name": "Symfony Community",
  7164. "homepage": "https://symfony.com/contributors"
  7165. }
  7166. ],
  7167. "description": "Provides tools to internationalize your application",
  7168. "homepage": "https://symfony.com",
  7169. "support": {
  7170. "source": "https://github.com/symfony/translation/tree/v5.3.2"
  7171. },
  7172. "funding": [
  7173. {
  7174. "url": "https://symfony.com/sponsor",
  7175. "type": "custom"
  7176. },
  7177. {
  7178. "url": "https://github.com/fabpot",
  7179. "type": "github"
  7180. },
  7181. {
  7182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7183. "type": "tidelift"
  7184. }
  7185. ],
  7186. "time": "2021-06-06T09:51:56+00:00"
  7187. },
  7188. {
  7189. "name": "symfony/translation-contracts",
  7190. "version": "v2.4.0",
  7191. "source": {
  7192. "type": "git",
  7193. "url": "https://github.com/symfony/translation-contracts.git",
  7194. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7195. },
  7196. "dist": {
  7197. "type": "zip",
  7198. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7199. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7200. "shasum": "",
  7201. "mirrors": [
  7202. {
  7203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7204. "preferred": true
  7205. }
  7206. ]
  7207. },
  7208. "require": {
  7209. "php": ">=7.2.5"
  7210. },
  7211. "suggest": {
  7212. "symfony/translation-implementation": ""
  7213. },
  7214. "type": "library",
  7215. "extra": {
  7216. "branch-alias": {
  7217. "dev-main": "2.4-dev"
  7218. },
  7219. "thanks": {
  7220. "name": "symfony/contracts",
  7221. "url": "https://github.com/symfony/contracts"
  7222. }
  7223. },
  7224. "autoload": {
  7225. "psr-4": {
  7226. "Symfony\\Contracts\\Translation\\": ""
  7227. }
  7228. },
  7229. "notification-url": "https://packagist.org/downloads/",
  7230. "license": [
  7231. "MIT"
  7232. ],
  7233. "authors": [
  7234. {
  7235. "name": "Nicolas Grekas",
  7236. "email": "p@tchwork.com"
  7237. },
  7238. {
  7239. "name": "Symfony Community",
  7240. "homepage": "https://symfony.com/contributors"
  7241. }
  7242. ],
  7243. "description": "Generic abstractions related to translation",
  7244. "homepage": "https://symfony.com",
  7245. "keywords": [
  7246. "abstractions",
  7247. "contracts",
  7248. "decoupling",
  7249. "interfaces",
  7250. "interoperability",
  7251. "standards"
  7252. ],
  7253. "support": {
  7254. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7255. },
  7256. "funding": [
  7257. {
  7258. "url": "https://symfony.com/sponsor",
  7259. "type": "custom"
  7260. },
  7261. {
  7262. "url": "https://github.com/fabpot",
  7263. "type": "github"
  7264. },
  7265. {
  7266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7267. "type": "tidelift"
  7268. }
  7269. ],
  7270. "time": "2021-03-23T23:28:01+00:00"
  7271. },
  7272. {
  7273. "name": "symfony/var-dumper",
  7274. "version": "v5.3.2",
  7275. "source": {
  7276. "type": "git",
  7277. "url": "https://github.com/symfony/var-dumper.git",
  7278. "reference": "905a22c68b292ffb6f20d7636c36b220d1fba5ae"
  7279. },
  7280. "dist": {
  7281. "type": "zip",
  7282. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/905a22c68b292ffb6f20d7636c36b220d1fba5ae",
  7283. "reference": "905a22c68b292ffb6f20d7636c36b220d1fba5ae",
  7284. "shasum": "",
  7285. "mirrors": [
  7286. {
  7287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7288. "preferred": true
  7289. }
  7290. ]
  7291. },
  7292. "require": {
  7293. "php": ">=7.2.5",
  7294. "symfony/polyfill-mbstring": "~1.0",
  7295. "symfony/polyfill-php80": "^1.15"
  7296. },
  7297. "conflict": {
  7298. "phpunit/phpunit": "<5.4.3",
  7299. "symfony/console": "<4.4"
  7300. },
  7301. "require-dev": {
  7302. "ext-iconv": "*",
  7303. "symfony/console": "^4.4|^5.0",
  7304. "symfony/process": "^4.4|^5.0",
  7305. "twig/twig": "^2.13|^3.0.4"
  7306. },
  7307. "suggest": {
  7308. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7309. "ext-intl": "To show region name in time zone dump",
  7310. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7311. },
  7312. "bin": [
  7313. "Resources/bin/var-dump-server"
  7314. ],
  7315. "type": "library",
  7316. "autoload": {
  7317. "files": [
  7318. "Resources/functions/dump.php"
  7319. ],
  7320. "psr-4": {
  7321. "Symfony\\Component\\VarDumper\\": ""
  7322. },
  7323. "exclude-from-classmap": [
  7324. "/Tests/"
  7325. ]
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "license": [
  7329. "MIT"
  7330. ],
  7331. "authors": [
  7332. {
  7333. "name": "Nicolas Grekas",
  7334. "email": "p@tchwork.com"
  7335. },
  7336. {
  7337. "name": "Symfony Community",
  7338. "homepage": "https://symfony.com/contributors"
  7339. }
  7340. ],
  7341. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7342. "homepage": "https://symfony.com",
  7343. "keywords": [
  7344. "debug",
  7345. "dump"
  7346. ],
  7347. "support": {
  7348. "source": "https://github.com/symfony/var-dumper/tree/v5.3.2"
  7349. },
  7350. "funding": [
  7351. {
  7352. "url": "https://symfony.com/sponsor",
  7353. "type": "custom"
  7354. },
  7355. {
  7356. "url": "https://github.com/fabpot",
  7357. "type": "github"
  7358. },
  7359. {
  7360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7361. "type": "tidelift"
  7362. }
  7363. ],
  7364. "time": "2021-06-06T09:51:56+00:00"
  7365. },
  7366. {
  7367. "name": "te7a-houdini/laravel-trix",
  7368. "version": "2.0.4",
  7369. "source": {
  7370. "type": "git",
  7371. "url": "https://github.com/amaelftah/laravel-trix.git",
  7372. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074"
  7373. },
  7374. "dist": {
  7375. "type": "zip",
  7376. "url": "https://api.github.com/repos/amaelftah/laravel-trix/zipball/2295ae96aad8b7c427647c84e814c33926eaf074",
  7377. "reference": "2295ae96aad8b7c427647c84e814c33926eaf074",
  7378. "shasum": "",
  7379. "mirrors": [
  7380. {
  7381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7382. "preferred": true
  7383. }
  7384. ]
  7385. },
  7386. "require": {
  7387. "laravel/framework": "~5.8.0|~6.0|~7.0|~8.0",
  7388. "php": "^7.1"
  7389. },
  7390. "require-dev": {
  7391. "orchestra/testbench": "^3.5|~4.0|~5.0|~6.0"
  7392. },
  7393. "type": "library",
  7394. "extra": {
  7395. "laravel": {
  7396. "providers": [
  7397. "Te7aHoudini\\LaravelTrix\\LaravelTrixServiceProvider"
  7398. ]
  7399. }
  7400. },
  7401. "autoload": {
  7402. "psr-4": {
  7403. "Te7aHoudini\\LaravelTrix\\": "src"
  7404. }
  7405. },
  7406. "notification-url": "https://packagist.org/downloads/",
  7407. "license": [
  7408. "MIT"
  7409. ],
  7410. "authors": [
  7411. {
  7412. "name": "Ahmed Abd El Ftah",
  7413. "email": "ahmedabdelftah95165@gmail.com",
  7414. "role": "Developer"
  7415. }
  7416. ],
  7417. "description": "trix editor for laravel inspired by ActionText for rails",
  7418. "homepage": "https://github.com/te7ahoudini/laravel-trix",
  7419. "keywords": [
  7420. "laravel-trix",
  7421. "te7a-houdini"
  7422. ],
  7423. "support": {
  7424. "issues": "https://github.com/amaelftah/laravel-trix/issues",
  7425. "source": "https://github.com/amaelftah/laravel-trix/tree/2.0.4"
  7426. },
  7427. "time": "2020-11-12T10:48:06+00:00"
  7428. },
  7429. {
  7430. "name": "tightenco/collect",
  7431. "version": "v5.6.33",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://github.com/tighten/collect.git",
  7435. "reference": "d7381736dca44ac17d0805a25191b094e5a22446"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://api.github.com/repos/tighten/collect/zipball/d7381736dca44ac17d0805a25191b094e5a22446",
  7440. "reference": "d7381736dca44ac17d0805a25191b094e5a22446",
  7441. "shasum": "",
  7442. "mirrors": [
  7443. {
  7444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7445. "preferred": true
  7446. }
  7447. ]
  7448. },
  7449. "require": {
  7450. "php": ">=7.1.3",
  7451. "symfony/var-dumper": ">=3.1.10"
  7452. },
  7453. "require-dev": {
  7454. "mockery/mockery": "~1.0",
  7455. "nesbot/carbon": "~1.20",
  7456. "phpunit/phpunit": "~7.0"
  7457. },
  7458. "type": "library",
  7459. "autoload": {
  7460. "files": [
  7461. "src/Collect/Support/helpers.php",
  7462. "src/Collect/Support/alias.php"
  7463. ],
  7464. "psr-4": {
  7465. "Tightenco\\Collect\\": "src/Collect"
  7466. }
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Taylor Otwell",
  7475. "email": "taylorotwell@gmail.com"
  7476. }
  7477. ],
  7478. "description": "Collect - Illuminate Collections as a separate package.",
  7479. "keywords": [
  7480. "collection",
  7481. "laravel"
  7482. ],
  7483. "support": {
  7484. "issues": "https://github.com/tighten/collect/issues",
  7485. "source": "https://github.com/tighten/collect/tree/v5.6.33"
  7486. },
  7487. "time": "2018-08-09T16:56:26+00:00"
  7488. },
  7489. {
  7490. "name": "tijsverkoyen/css-to-inline-styles",
  7491. "version": "2.2.3",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7495. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7500. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7501. "shasum": "",
  7502. "mirrors": [
  7503. {
  7504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7505. "preferred": true
  7506. }
  7507. ]
  7508. },
  7509. "require": {
  7510. "ext-dom": "*",
  7511. "ext-libxml": "*",
  7512. "php": "^5.5 || ^7.0 || ^8.0",
  7513. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7514. },
  7515. "require-dev": {
  7516. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7517. },
  7518. "type": "library",
  7519. "extra": {
  7520. "branch-alias": {
  7521. "dev-master": "2.2.x-dev"
  7522. }
  7523. },
  7524. "autoload": {
  7525. "psr-4": {
  7526. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7527. }
  7528. },
  7529. "notification-url": "https://packagist.org/downloads/",
  7530. "license": [
  7531. "BSD-3-Clause"
  7532. ],
  7533. "authors": [
  7534. {
  7535. "name": "Tijs Verkoyen",
  7536. "email": "css_to_inline_styles@verkoyen.eu",
  7537. "role": "Developer"
  7538. }
  7539. ],
  7540. "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.",
  7541. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7542. "support": {
  7543. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7544. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7545. },
  7546. "time": "2020-07-13T06:12:54+00:00"
  7547. },
  7548. {
  7549. "name": "vlucas/phpdotenv",
  7550. "version": "v4.2.0",
  7551. "source": {
  7552. "type": "git",
  7553. "url": "https://github.com/vlucas/phpdotenv.git",
  7554. "reference": "da64796370fc4eb03cc277088f6fede9fde88482"
  7555. },
  7556. "dist": {
  7557. "type": "zip",
  7558. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482",
  7559. "reference": "da64796370fc4eb03cc277088f6fede9fde88482",
  7560. "shasum": "",
  7561. "mirrors": [
  7562. {
  7563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7564. "preferred": true
  7565. }
  7566. ]
  7567. },
  7568. "require": {
  7569. "php": "^5.5.9 || ^7.0 || ^8.0",
  7570. "phpoption/phpoption": "^1.7.3",
  7571. "symfony/polyfill-ctype": "^1.17"
  7572. },
  7573. "require-dev": {
  7574. "bamarni/composer-bin-plugin": "^1.4.1",
  7575. "ext-filter": "*",
  7576. "ext-pcre": "*",
  7577. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  7578. },
  7579. "suggest": {
  7580. "ext-filter": "Required to use the boolean validator.",
  7581. "ext-pcre": "Required to use most of the library."
  7582. },
  7583. "type": "library",
  7584. "extra": {
  7585. "branch-alias": {
  7586. "dev-master": "4.1-dev"
  7587. }
  7588. },
  7589. "autoload": {
  7590. "psr-4": {
  7591. "Dotenv\\": "src/"
  7592. }
  7593. },
  7594. "notification-url": "https://packagist.org/downloads/",
  7595. "license": [
  7596. "BSD-3-Clause"
  7597. ],
  7598. "authors": [
  7599. {
  7600. "name": "Graham Campbell",
  7601. "email": "graham@alt-three.com",
  7602. "homepage": "https://gjcampbell.co.uk/"
  7603. },
  7604. {
  7605. "name": "Vance Lucas",
  7606. "email": "vance@vancelucas.com",
  7607. "homepage": "https://vancelucas.com/"
  7608. }
  7609. ],
  7610. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7611. "keywords": [
  7612. "dotenv",
  7613. "env",
  7614. "environment"
  7615. ],
  7616. "support": {
  7617. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7618. "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0"
  7619. },
  7620. "funding": [
  7621. {
  7622. "url": "https://github.com/GrahamCampbell",
  7623. "type": "github"
  7624. },
  7625. {
  7626. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7627. "type": "tidelift"
  7628. }
  7629. ],
  7630. "time": "2021-01-20T15:11:48+00:00"
  7631. },
  7632. {
  7633. "name": "voku/portable-ascii",
  7634. "version": "1.5.6",
  7635. "source": {
  7636. "type": "git",
  7637. "url": "https://github.com/voku/portable-ascii.git",
  7638. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7639. },
  7640. "dist": {
  7641. "type": "zip",
  7642. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7643. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7644. "shasum": "",
  7645. "mirrors": [
  7646. {
  7647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7648. "preferred": true
  7649. }
  7650. ]
  7651. },
  7652. "require": {
  7653. "php": ">=7.0.0"
  7654. },
  7655. "require-dev": {
  7656. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7657. },
  7658. "suggest": {
  7659. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7660. },
  7661. "type": "library",
  7662. "autoload": {
  7663. "psr-4": {
  7664. "voku\\": "src/voku/"
  7665. }
  7666. },
  7667. "notification-url": "https://packagist.org/downloads/",
  7668. "license": [
  7669. "MIT"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Lars Moelleken",
  7674. "homepage": "http://www.moelleken.org/"
  7675. }
  7676. ],
  7677. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7678. "homepage": "https://github.com/voku/portable-ascii",
  7679. "keywords": [
  7680. "ascii",
  7681. "clean",
  7682. "php"
  7683. ],
  7684. "support": {
  7685. "issues": "https://github.com/voku/portable-ascii/issues",
  7686. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7687. },
  7688. "funding": [
  7689. {
  7690. "url": "https://www.paypal.me/moelleken",
  7691. "type": "custom"
  7692. },
  7693. {
  7694. "url": "https://github.com/voku",
  7695. "type": "github"
  7696. },
  7697. {
  7698. "url": "https://opencollective.com/portable-ascii",
  7699. "type": "open_collective"
  7700. },
  7701. {
  7702. "url": "https://www.patreon.com/voku",
  7703. "type": "patreon"
  7704. },
  7705. {
  7706. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7707. "type": "tidelift"
  7708. }
  7709. ],
  7710. "time": "2020-11-12T00:07:28+00:00"
  7711. },
  7712. {
  7713. "name": "yajra/laravel-oci8",
  7714. "version": "v7.0.0",
  7715. "source": {
  7716. "type": "git",
  7717. "url": "https://github.com/yajra/laravel-oci8.git",
  7718. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974"
  7719. },
  7720. "dist": {
  7721. "type": "zip",
  7722. "url": "https://api.github.com/repos/yajra/laravel-oci8/zipball/0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7723. "reference": "0d0db3c21a15438ee4bd610f6a0c585cb45fd974",
  7724. "shasum": "",
  7725. "mirrors": [
  7726. {
  7727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7728. "preferred": true
  7729. }
  7730. ]
  7731. },
  7732. "require": {
  7733. "ext-oci8": ">=2.0.0",
  7734. "ext-pdo": "*",
  7735. "illuminate/database": "^7",
  7736. "illuminate/support": "^7",
  7737. "php": "^7.2.5",
  7738. "yajra/laravel-pdo-via-oci8": "^2"
  7739. },
  7740. "require-dev": {
  7741. "mockery/mockery": "^1.3.1",
  7742. "phpunit/phpunit": "^8.4|^9.0",
  7743. "scrutinizer/ocular": "~1.1"
  7744. },
  7745. "type": "library",
  7746. "extra": {
  7747. "branch-alias": {
  7748. "dev-master": "7.x-dev"
  7749. },
  7750. "laravel": {
  7751. "providers": [
  7752. "Yajra\\Oci8\\Oci8ServiceProvider"
  7753. ]
  7754. }
  7755. },
  7756. "autoload": {
  7757. "files": [
  7758. "src/helper.php"
  7759. ],
  7760. "psr-4": {
  7761. "Yajra\\": "src/"
  7762. }
  7763. },
  7764. "notification-url": "https://packagist.org/downloads/",
  7765. "license": [
  7766. "MIT"
  7767. ],
  7768. "authors": [
  7769. {
  7770. "name": "Arjay Angeles",
  7771. "email": "aqangeles@gmail.com"
  7772. }
  7773. ],
  7774. "description": "Oracle DB driver for Laravel 4|5|6|7 via OCI8",
  7775. "keywords": [
  7776. "laravel",
  7777. "oci8",
  7778. "oracle",
  7779. "pdo_oci"
  7780. ],
  7781. "support": {
  7782. "issues": "https://github.com/yajra/laravel-oci8/issues",
  7783. "source": "https://github.com/yajra/laravel-oci8/tree/v7.0.0"
  7784. },
  7785. "funding": [
  7786. {
  7787. "url": "https://www.paypal.me/yajra",
  7788. "type": "custom"
  7789. },
  7790. {
  7791. "url": "https://www.patreon.com/yajra",
  7792. "type": "patreon"
  7793. }
  7794. ],
  7795. "time": "2020-03-04T02:15:19+00:00"
  7796. },
  7797. {
  7798. "name": "yajra/laravel-pdo-via-oci8",
  7799. "version": "v2.2.0",
  7800. "source": {
  7801. "type": "git",
  7802. "url": "https://github.com/yajra/pdo-via-oci8.git",
  7803. "reference": "93610843b7abe975413288bcc4adb347edefb4b8"
  7804. },
  7805. "dist": {
  7806. "type": "zip",
  7807. "url": "https://api.github.com/repos/yajra/pdo-via-oci8/zipball/93610843b7abe975413288bcc4adb347edefb4b8",
  7808. "reference": "93610843b7abe975413288bcc4adb347edefb4b8",
  7809. "shasum": "",
  7810. "mirrors": [
  7811. {
  7812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7813. "preferred": true
  7814. }
  7815. ]
  7816. },
  7817. "require-dev": {
  7818. "phpunit/phpunit": "^6.4"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-master": "2.0-dev"
  7824. }
  7825. },
  7826. "autoload": {
  7827. "psr-4": {
  7828. "Yajra\\": "src/"
  7829. }
  7830. },
  7831. "notification-url": "https://packagist.org/downloads/",
  7832. "license": [
  7833. "MIT"
  7834. ],
  7835. "authors": [
  7836. {
  7837. "name": "Arjay Angeles",
  7838. "email": "aqangeles@gmail.com"
  7839. }
  7840. ],
  7841. "description": "PDO userspace driver proxying calls to PHP OCI8 driver",
  7842. "support": {
  7843. "issues": "https://github.com/yajra/pdo-via-oci8/issues",
  7844. "source": "https://github.com/yajra/pdo-via-oci8/tree/v2.2.0"
  7845. },
  7846. "time": "2020-12-11T12:29:18+00:00"
  7847. }
  7848. ],
  7849. "packages-dev": [
  7850. {
  7851. "name": "barryvdh/laravel-debugbar",
  7852. "version": "v3.6.2",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  7856. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7861. "reference": "70b89754913fd89fef16d0170a91dbc2a5cd633a",
  7862. "shasum": "",
  7863. "mirrors": [
  7864. {
  7865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7866. "preferred": true
  7867. }
  7868. ]
  7869. },
  7870. "require": {
  7871. "illuminate/routing": "^6|^7|^8",
  7872. "illuminate/session": "^6|^7|^8",
  7873. "illuminate/support": "^6|^7|^8",
  7874. "maximebf/debugbar": "^1.16.3",
  7875. "php": ">=7.2",
  7876. "symfony/debug": "^4.3|^5",
  7877. "symfony/finder": "^4.3|^5"
  7878. },
  7879. "require-dev": {
  7880. "mockery/mockery": "^1.3.3",
  7881. "orchestra/testbench-dusk": "^4|^5|^6",
  7882. "phpunit/phpunit": "^8.5|^9.0",
  7883. "squizlabs/php_codesniffer": "^3.5"
  7884. },
  7885. "type": "library",
  7886. "extra": {
  7887. "branch-alias": {
  7888. "dev-master": "3.5-dev"
  7889. },
  7890. "laravel": {
  7891. "providers": [
  7892. "Barryvdh\\Debugbar\\ServiceProvider"
  7893. ],
  7894. "aliases": {
  7895. "Debugbar": "Barryvdh\\Debugbar\\Facade"
  7896. }
  7897. }
  7898. },
  7899. "autoload": {
  7900. "psr-4": {
  7901. "Barryvdh\\Debugbar\\": "src/"
  7902. },
  7903. "files": [
  7904. "src/helpers.php"
  7905. ]
  7906. },
  7907. "notification-url": "https://packagist.org/downloads/",
  7908. "license": [
  7909. "MIT"
  7910. ],
  7911. "authors": [
  7912. {
  7913. "name": "Barry vd. Heuvel",
  7914. "email": "barryvdh@gmail.com"
  7915. }
  7916. ],
  7917. "description": "PHP Debugbar integration for Laravel",
  7918. "keywords": [
  7919. "debug",
  7920. "debugbar",
  7921. "laravel",
  7922. "profiler",
  7923. "webprofiler"
  7924. ],
  7925. "support": {
  7926. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  7927. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.6.2"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://fruitcake.nl",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/barryvdh",
  7936. "type": "github"
  7937. }
  7938. ],
  7939. "time": "2021-06-14T14:29:26+00:00"
  7940. },
  7941. {
  7942. "name": "beyondcode/laravel-dump-server",
  7943. "version": "1.7.0",
  7944. "source": {
  7945. "type": "git",
  7946. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  7947. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89"
  7948. },
  7949. "dist": {
  7950. "type": "zip",
  7951. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/e27c7b942ab62f6ac7168359393d328ec5215b89",
  7952. "reference": "e27c7b942ab62f6ac7168359393d328ec5215b89",
  7953. "shasum": "",
  7954. "mirrors": [
  7955. {
  7956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7957. "preferred": true
  7958. }
  7959. ]
  7960. },
  7961. "require": {
  7962. "illuminate/console": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7963. "illuminate/http": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7964. "illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0",
  7965. "php": ">=7.2.5",
  7966. "symfony/var-dumper": "^5.0"
  7967. },
  7968. "require-dev": {
  7969. "larapack/dd": "^1.0",
  7970. "phpunit/phpunit": "^7.0|^9.3"
  7971. },
  7972. "type": "library",
  7973. "extra": {
  7974. "laravel": {
  7975. "providers": [
  7976. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  7977. ]
  7978. }
  7979. },
  7980. "autoload": {
  7981. "psr-4": {
  7982. "BeyondCode\\DumpServer\\": "src"
  7983. },
  7984. "files": [
  7985. "helpers.php"
  7986. ]
  7987. },
  7988. "notification-url": "https://packagist.org/downloads/",
  7989. "license": [
  7990. "MIT"
  7991. ],
  7992. "authors": [
  7993. {
  7994. "name": "Marcel Pociot",
  7995. "email": "marcel@beyondco.de",
  7996. "homepage": "https://beyondco.de",
  7997. "role": "Developer"
  7998. }
  7999. ],
  8000. "description": "Symfony Var-Dump Server for Laravel",
  8001. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  8002. "keywords": [
  8003. "beyondcode",
  8004. "laravel-dump-server"
  8005. ],
  8006. "support": {
  8007. "issues": "https://github.com/beyondcode/laravel-dump-server/issues",
  8008. "source": "https://github.com/beyondcode/laravel-dump-server/tree/1.7.0"
  8009. },
  8010. "time": "2020-12-15T10:57:43+00:00"
  8011. },
  8012. {
  8013. "name": "doctrine/instantiator",
  8014. "version": "1.4.0",
  8015. "source": {
  8016. "type": "git",
  8017. "url": "https://github.com/doctrine/instantiator.git",
  8018. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8019. },
  8020. "dist": {
  8021. "type": "zip",
  8022. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8023. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8024. "shasum": "",
  8025. "mirrors": [
  8026. {
  8027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8028. "preferred": true
  8029. }
  8030. ]
  8031. },
  8032. "require": {
  8033. "php": "^7.1 || ^8.0"
  8034. },
  8035. "require-dev": {
  8036. "doctrine/coding-standard": "^8.0",
  8037. "ext-pdo": "*",
  8038. "ext-phar": "*",
  8039. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8040. "phpstan/phpstan": "^0.12",
  8041. "phpstan/phpstan-phpunit": "^0.12",
  8042. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8043. },
  8044. "type": "library",
  8045. "autoload": {
  8046. "psr-4": {
  8047. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8048. }
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "MIT"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Marco Pivetta",
  8057. "email": "ocramius@gmail.com",
  8058. "homepage": "https://ocramius.github.io/"
  8059. }
  8060. ],
  8061. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8062. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8063. "keywords": [
  8064. "constructor",
  8065. "instantiate"
  8066. ],
  8067. "support": {
  8068. "issues": "https://github.com/doctrine/instantiator/issues",
  8069. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8070. },
  8071. "funding": [
  8072. {
  8073. "url": "https://www.doctrine-project.org/sponsorship.html",
  8074. "type": "custom"
  8075. },
  8076. {
  8077. "url": "https://www.patreon.com/phpdoctrine",
  8078. "type": "patreon"
  8079. },
  8080. {
  8081. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8082. "type": "tidelift"
  8083. }
  8084. ],
  8085. "time": "2020-11-10T18:47:58+00:00"
  8086. },
  8087. {
  8088. "name": "fzaninotto/faker",
  8089. "version": "v1.9.2",
  8090. "source": {
  8091. "type": "git",
  8092. "url": "https://github.com/fzaninotto/Faker.git",
  8093. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8094. },
  8095. "dist": {
  8096. "type": "zip",
  8097. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8098. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8099. "shasum": "",
  8100. "mirrors": [
  8101. {
  8102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8103. "preferred": true
  8104. }
  8105. ]
  8106. },
  8107. "require": {
  8108. "php": "^5.3.3 || ^7.0"
  8109. },
  8110. "require-dev": {
  8111. "ext-intl": "*",
  8112. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8113. "squizlabs/php_codesniffer": "^2.9.2"
  8114. },
  8115. "type": "library",
  8116. "extra": {
  8117. "branch-alias": {
  8118. "dev-master": "1.9-dev"
  8119. }
  8120. },
  8121. "autoload": {
  8122. "psr-4": {
  8123. "Faker\\": "src/Faker/"
  8124. }
  8125. },
  8126. "notification-url": "https://packagist.org/downloads/",
  8127. "license": [
  8128. "MIT"
  8129. ],
  8130. "authors": [
  8131. {
  8132. "name": "François Zaninotto"
  8133. }
  8134. ],
  8135. "description": "Faker is a PHP library that generates fake data for you.",
  8136. "keywords": [
  8137. "data",
  8138. "faker",
  8139. "fixtures"
  8140. ],
  8141. "support": {
  8142. "issues": "https://github.com/fzaninotto/Faker/issues",
  8143. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  8144. },
  8145. "abandoned": true,
  8146. "time": "2020-12-11T09:56:16+00:00"
  8147. },
  8148. {
  8149. "name": "hamcrest/hamcrest-php",
  8150. "version": "v2.0.1",
  8151. "source": {
  8152. "type": "git",
  8153. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8154. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8155. },
  8156. "dist": {
  8157. "type": "zip",
  8158. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8159. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8160. "shasum": "",
  8161. "mirrors": [
  8162. {
  8163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8164. "preferred": true
  8165. }
  8166. ]
  8167. },
  8168. "require": {
  8169. "php": "^5.3|^7.0|^8.0"
  8170. },
  8171. "replace": {
  8172. "cordoval/hamcrest-php": "*",
  8173. "davedevelopment/hamcrest-php": "*",
  8174. "kodova/hamcrest-php": "*"
  8175. },
  8176. "require-dev": {
  8177. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8178. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8179. },
  8180. "type": "library",
  8181. "extra": {
  8182. "branch-alias": {
  8183. "dev-master": "2.1-dev"
  8184. }
  8185. },
  8186. "autoload": {
  8187. "classmap": [
  8188. "hamcrest"
  8189. ]
  8190. },
  8191. "notification-url": "https://packagist.org/downloads/",
  8192. "license": [
  8193. "BSD-3-Clause"
  8194. ],
  8195. "description": "This is the PHP port of Hamcrest Matchers",
  8196. "keywords": [
  8197. "test"
  8198. ],
  8199. "support": {
  8200. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8201. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8202. },
  8203. "time": "2020-07-09T08:09:16+00:00"
  8204. },
  8205. {
  8206. "name": "maximebf/debugbar",
  8207. "version": "v1.16.5",
  8208. "source": {
  8209. "type": "git",
  8210. "url": "https://github.com/maximebf/php-debugbar.git",
  8211. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62"
  8212. },
  8213. "dist": {
  8214. "type": "zip",
  8215. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8216. "reference": "6d51ee9e94cff14412783785e79a4e7ef97b9d62",
  8217. "shasum": "",
  8218. "mirrors": [
  8219. {
  8220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8221. "preferred": true
  8222. }
  8223. ]
  8224. },
  8225. "require": {
  8226. "php": "^7.1|^8",
  8227. "psr/log": "^1.0",
  8228. "symfony/var-dumper": "^2.6|^3|^4|^5"
  8229. },
  8230. "require-dev": {
  8231. "phpunit/phpunit": "^7.5.20 || ^9.4.2"
  8232. },
  8233. "suggest": {
  8234. "kriswallsmith/assetic": "The best way to manage assets",
  8235. "monolog/monolog": "Log using Monolog",
  8236. "predis/predis": "Redis storage"
  8237. },
  8238. "type": "library",
  8239. "extra": {
  8240. "branch-alias": {
  8241. "dev-master": "1.16-dev"
  8242. }
  8243. },
  8244. "autoload": {
  8245. "psr-4": {
  8246. "DebugBar\\": "src/DebugBar/"
  8247. }
  8248. },
  8249. "notification-url": "https://packagist.org/downloads/",
  8250. "license": [
  8251. "MIT"
  8252. ],
  8253. "authors": [
  8254. {
  8255. "name": "Maxime Bouroumeau-Fuseau",
  8256. "email": "maxime.bouroumeau@gmail.com",
  8257. "homepage": "http://maximebf.com"
  8258. },
  8259. {
  8260. "name": "Barry vd. Heuvel",
  8261. "email": "barryvdh@gmail.com"
  8262. }
  8263. ],
  8264. "description": "Debug bar in the browser for php application",
  8265. "homepage": "https://github.com/maximebf/php-debugbar",
  8266. "keywords": [
  8267. "debug",
  8268. "debugbar"
  8269. ],
  8270. "support": {
  8271. "issues": "https://github.com/maximebf/php-debugbar/issues",
  8272. "source": "https://github.com/maximebf/php-debugbar/tree/v1.16.5"
  8273. },
  8274. "time": "2020-12-07T11:07:24+00:00"
  8275. },
  8276. {
  8277. "name": "mockery/mockery",
  8278. "version": "1.4.3",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/mockery/mockery.git",
  8282. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8287. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8288. "shasum": "",
  8289. "mirrors": [
  8290. {
  8291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8292. "preferred": true
  8293. }
  8294. ]
  8295. },
  8296. "require": {
  8297. "hamcrest/hamcrest-php": "^2.0.1",
  8298. "lib-pcre": ">=7.0",
  8299. "php": "^7.3 || ^8.0"
  8300. },
  8301. "conflict": {
  8302. "phpunit/phpunit": "<8.0"
  8303. },
  8304. "require-dev": {
  8305. "phpunit/phpunit": "^8.5 || ^9.3"
  8306. },
  8307. "type": "library",
  8308. "extra": {
  8309. "branch-alias": {
  8310. "dev-master": "1.4.x-dev"
  8311. }
  8312. },
  8313. "autoload": {
  8314. "psr-0": {
  8315. "Mockery": "library/"
  8316. }
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "BSD-3-Clause"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "Pádraic Brady",
  8325. "email": "padraic.brady@gmail.com",
  8326. "homepage": "http://blog.astrumfutura.com"
  8327. },
  8328. {
  8329. "name": "Dave Marshall",
  8330. "email": "dave.marshall@atstsolutions.co.uk",
  8331. "homepage": "http://davedevelopment.co.uk"
  8332. }
  8333. ],
  8334. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8335. "homepage": "https://github.com/mockery/mockery",
  8336. "keywords": [
  8337. "BDD",
  8338. "TDD",
  8339. "library",
  8340. "mock",
  8341. "mock objects",
  8342. "mockery",
  8343. "stub",
  8344. "test",
  8345. "test double",
  8346. "testing"
  8347. ],
  8348. "support": {
  8349. "issues": "https://github.com/mockery/mockery/issues",
  8350. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8351. },
  8352. "time": "2021-02-24T09:51:49+00:00"
  8353. },
  8354. {
  8355. "name": "myclabs/deep-copy",
  8356. "version": "1.10.2",
  8357. "source": {
  8358. "type": "git",
  8359. "url": "https://github.com/myclabs/DeepCopy.git",
  8360. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8361. },
  8362. "dist": {
  8363. "type": "zip",
  8364. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8365. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8366. "shasum": "",
  8367. "mirrors": [
  8368. {
  8369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8370. "preferred": true
  8371. }
  8372. ]
  8373. },
  8374. "require": {
  8375. "php": "^7.1 || ^8.0"
  8376. },
  8377. "replace": {
  8378. "myclabs/deep-copy": "self.version"
  8379. },
  8380. "require-dev": {
  8381. "doctrine/collections": "^1.0",
  8382. "doctrine/common": "^2.6",
  8383. "phpunit/phpunit": "^7.1"
  8384. },
  8385. "type": "library",
  8386. "autoload": {
  8387. "psr-4": {
  8388. "DeepCopy\\": "src/DeepCopy/"
  8389. },
  8390. "files": [
  8391. "src/DeepCopy/deep_copy.php"
  8392. ]
  8393. },
  8394. "notification-url": "https://packagist.org/downloads/",
  8395. "license": [
  8396. "MIT"
  8397. ],
  8398. "description": "Create deep copies (clones) of your objects",
  8399. "keywords": [
  8400. "clone",
  8401. "copy",
  8402. "duplicate",
  8403. "object",
  8404. "object graph"
  8405. ],
  8406. "support": {
  8407. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8408. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8409. },
  8410. "funding": [
  8411. {
  8412. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8413. "type": "tidelift"
  8414. }
  8415. ],
  8416. "time": "2020-11-13T09:40:50+00:00"
  8417. },
  8418. {
  8419. "name": "nunomaduro/collision",
  8420. "version": "v4.3.0",
  8421. "source": {
  8422. "type": "git",
  8423. "url": "https://github.com/nunomaduro/collision.git",
  8424. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e"
  8425. },
  8426. "dist": {
  8427. "type": "zip",
  8428. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/7c125dc2463f3e144ddc7e05e63077109508c94e",
  8429. "reference": "7c125dc2463f3e144ddc7e05e63077109508c94e",
  8430. "shasum": "",
  8431. "mirrors": [
  8432. {
  8433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8434. "preferred": true
  8435. }
  8436. ]
  8437. },
  8438. "require": {
  8439. "facade/ignition-contracts": "^1.0",
  8440. "filp/whoops": "^2.4",
  8441. "php": "^7.2.5 || ^8.0",
  8442. "symfony/console": "^5.0"
  8443. },
  8444. "require-dev": {
  8445. "facade/ignition": "^2.0",
  8446. "fideloper/proxy": "^4.2",
  8447. "friendsofphp/php-cs-fixer": "^2.16",
  8448. "fruitcake/laravel-cors": "^1.0",
  8449. "laravel/framework": "^7.0",
  8450. "laravel/tinker": "^2.0",
  8451. "nunomaduro/larastan": "^0.6",
  8452. "orchestra/testbench": "^5.0",
  8453. "phpstan/phpstan": "^0.12.3",
  8454. "phpunit/phpunit": "^8.5.1 || ^9.0"
  8455. },
  8456. "type": "library",
  8457. "extra": {
  8458. "laravel": {
  8459. "providers": [
  8460. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8461. ]
  8462. }
  8463. },
  8464. "autoload": {
  8465. "psr-4": {
  8466. "NunoMaduro\\Collision\\": "src/"
  8467. }
  8468. },
  8469. "notification-url": "https://packagist.org/downloads/",
  8470. "license": [
  8471. "MIT"
  8472. ],
  8473. "authors": [
  8474. {
  8475. "name": "Nuno Maduro",
  8476. "email": "enunomaduro@gmail.com"
  8477. }
  8478. ],
  8479. "description": "Cli error handling for console/command-line PHP applications.",
  8480. "keywords": [
  8481. "artisan",
  8482. "cli",
  8483. "command-line",
  8484. "console",
  8485. "error",
  8486. "handling",
  8487. "laravel",
  8488. "laravel-zero",
  8489. "php",
  8490. "symfony"
  8491. ],
  8492. "support": {
  8493. "issues": "https://github.com/nunomaduro/collision/issues",
  8494. "source": "https://github.com/nunomaduro/collision"
  8495. },
  8496. "funding": [
  8497. {
  8498. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8499. "type": "custom"
  8500. },
  8501. {
  8502. "url": "https://github.com/nunomaduro",
  8503. "type": "github"
  8504. },
  8505. {
  8506. "url": "https://www.patreon.com/nunomaduro",
  8507. "type": "patreon"
  8508. }
  8509. ],
  8510. "time": "2020-10-29T15:12:23+00:00"
  8511. },
  8512. {
  8513. "name": "phar-io/manifest",
  8514. "version": "2.0.1",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/phar-io/manifest.git",
  8518. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8523. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8524. "shasum": "",
  8525. "mirrors": [
  8526. {
  8527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8528. "preferred": true
  8529. }
  8530. ]
  8531. },
  8532. "require": {
  8533. "ext-dom": "*",
  8534. "ext-phar": "*",
  8535. "ext-xmlwriter": "*",
  8536. "phar-io/version": "^3.0.1",
  8537. "php": "^7.2 || ^8.0"
  8538. },
  8539. "type": "library",
  8540. "extra": {
  8541. "branch-alias": {
  8542. "dev-master": "2.0.x-dev"
  8543. }
  8544. },
  8545. "autoload": {
  8546. "classmap": [
  8547. "src/"
  8548. ]
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "BSD-3-Clause"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Arne Blankerts",
  8557. "email": "arne@blankerts.de",
  8558. "role": "Developer"
  8559. },
  8560. {
  8561. "name": "Sebastian Heuer",
  8562. "email": "sebastian@phpeople.de",
  8563. "role": "Developer"
  8564. },
  8565. {
  8566. "name": "Sebastian Bergmann",
  8567. "email": "sebastian@phpunit.de",
  8568. "role": "Developer"
  8569. }
  8570. ],
  8571. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8572. "support": {
  8573. "issues": "https://github.com/phar-io/manifest/issues",
  8574. "source": "https://github.com/phar-io/manifest/tree/master"
  8575. },
  8576. "time": "2020-06-27T14:33:11+00:00"
  8577. },
  8578. {
  8579. "name": "phar-io/version",
  8580. "version": "3.1.0",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/phar-io/version.git",
  8584. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8589. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8590. "shasum": "",
  8591. "mirrors": [
  8592. {
  8593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8594. "preferred": true
  8595. }
  8596. ]
  8597. },
  8598. "require": {
  8599. "php": "^7.2 || ^8.0"
  8600. },
  8601. "type": "library",
  8602. "autoload": {
  8603. "classmap": [
  8604. "src/"
  8605. ]
  8606. },
  8607. "notification-url": "https://packagist.org/downloads/",
  8608. "license": [
  8609. "BSD-3-Clause"
  8610. ],
  8611. "authors": [
  8612. {
  8613. "name": "Arne Blankerts",
  8614. "email": "arne@blankerts.de",
  8615. "role": "Developer"
  8616. },
  8617. {
  8618. "name": "Sebastian Heuer",
  8619. "email": "sebastian@phpeople.de",
  8620. "role": "Developer"
  8621. },
  8622. {
  8623. "name": "Sebastian Bergmann",
  8624. "email": "sebastian@phpunit.de",
  8625. "role": "Developer"
  8626. }
  8627. ],
  8628. "description": "Library for handling version information and constraints",
  8629. "support": {
  8630. "issues": "https://github.com/phar-io/version/issues",
  8631. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8632. },
  8633. "time": "2021-02-23T14:00:09+00:00"
  8634. },
  8635. {
  8636. "name": "phpdocumentor/reflection-common",
  8637. "version": "2.2.0",
  8638. "source": {
  8639. "type": "git",
  8640. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8641. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8642. },
  8643. "dist": {
  8644. "type": "zip",
  8645. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8646. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8647. "shasum": "",
  8648. "mirrors": [
  8649. {
  8650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8651. "preferred": true
  8652. }
  8653. ]
  8654. },
  8655. "require": {
  8656. "php": "^7.2 || ^8.0"
  8657. },
  8658. "type": "library",
  8659. "extra": {
  8660. "branch-alias": {
  8661. "dev-2.x": "2.x-dev"
  8662. }
  8663. },
  8664. "autoload": {
  8665. "psr-4": {
  8666. "phpDocumentor\\Reflection\\": "src/"
  8667. }
  8668. },
  8669. "notification-url": "https://packagist.org/downloads/",
  8670. "license": [
  8671. "MIT"
  8672. ],
  8673. "authors": [
  8674. {
  8675. "name": "Jaap van Otterdijk",
  8676. "email": "opensource@ijaap.nl"
  8677. }
  8678. ],
  8679. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8680. "homepage": "http://www.phpdoc.org",
  8681. "keywords": [
  8682. "FQSEN",
  8683. "phpDocumentor",
  8684. "phpdoc",
  8685. "reflection",
  8686. "static analysis"
  8687. ],
  8688. "support": {
  8689. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8690. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8691. },
  8692. "time": "2020-06-27T09:03:43+00:00"
  8693. },
  8694. {
  8695. "name": "phpdocumentor/reflection-docblock",
  8696. "version": "5.2.2",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  8700. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  8705. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  8706. "shasum": "",
  8707. "mirrors": [
  8708. {
  8709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8710. "preferred": true
  8711. }
  8712. ]
  8713. },
  8714. "require": {
  8715. "ext-filter": "*",
  8716. "php": "^7.2 || ^8.0",
  8717. "phpdocumentor/reflection-common": "^2.2",
  8718. "phpdocumentor/type-resolver": "^1.3",
  8719. "webmozart/assert": "^1.9.1"
  8720. },
  8721. "require-dev": {
  8722. "mockery/mockery": "~1.3.2"
  8723. },
  8724. "type": "library",
  8725. "extra": {
  8726. "branch-alias": {
  8727. "dev-master": "5.x-dev"
  8728. }
  8729. },
  8730. "autoload": {
  8731. "psr-4": {
  8732. "phpDocumentor\\Reflection\\": "src"
  8733. }
  8734. },
  8735. "notification-url": "https://packagist.org/downloads/",
  8736. "license": [
  8737. "MIT"
  8738. ],
  8739. "authors": [
  8740. {
  8741. "name": "Mike van Riel",
  8742. "email": "me@mikevanriel.com"
  8743. },
  8744. {
  8745. "name": "Jaap van Otterdijk",
  8746. "email": "account@ijaap.nl"
  8747. }
  8748. ],
  8749. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  8750. "support": {
  8751. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  8752. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  8753. },
  8754. "time": "2020-09-03T19:13:55+00:00"
  8755. },
  8756. {
  8757. "name": "phpdocumentor/type-resolver",
  8758. "version": "1.4.0",
  8759. "source": {
  8760. "type": "git",
  8761. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8762. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  8763. },
  8764. "dist": {
  8765. "type": "zip",
  8766. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8767. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  8768. "shasum": "",
  8769. "mirrors": [
  8770. {
  8771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8772. "preferred": true
  8773. }
  8774. ]
  8775. },
  8776. "require": {
  8777. "php": "^7.2 || ^8.0",
  8778. "phpdocumentor/reflection-common": "^2.0"
  8779. },
  8780. "require-dev": {
  8781. "ext-tokenizer": "*"
  8782. },
  8783. "type": "library",
  8784. "extra": {
  8785. "branch-alias": {
  8786. "dev-1.x": "1.x-dev"
  8787. }
  8788. },
  8789. "autoload": {
  8790. "psr-4": {
  8791. "phpDocumentor\\Reflection\\": "src"
  8792. }
  8793. },
  8794. "notification-url": "https://packagist.org/downloads/",
  8795. "license": [
  8796. "MIT"
  8797. ],
  8798. "authors": [
  8799. {
  8800. "name": "Mike van Riel",
  8801. "email": "me@mikevanriel.com"
  8802. }
  8803. ],
  8804. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8805. "support": {
  8806. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  8807. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  8808. },
  8809. "time": "2020-09-17T18:55:26+00:00"
  8810. },
  8811. {
  8812. "name": "phpspec/prophecy",
  8813. "version": "1.13.0",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/phpspec/prophecy.git",
  8817. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8822. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8823. "shasum": "",
  8824. "mirrors": [
  8825. {
  8826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8827. "preferred": true
  8828. }
  8829. ]
  8830. },
  8831. "require": {
  8832. "doctrine/instantiator": "^1.2",
  8833. "php": "^7.2 || ~8.0, <8.1",
  8834. "phpdocumentor/reflection-docblock": "^5.2",
  8835. "sebastian/comparator": "^3.0 || ^4.0",
  8836. "sebastian/recursion-context": "^3.0 || ^4.0"
  8837. },
  8838. "require-dev": {
  8839. "phpspec/phpspec": "^6.0",
  8840. "phpunit/phpunit": "^8.0 || ^9.0"
  8841. },
  8842. "type": "library",
  8843. "extra": {
  8844. "branch-alias": {
  8845. "dev-master": "1.11.x-dev"
  8846. }
  8847. },
  8848. "autoload": {
  8849. "psr-4": {
  8850. "Prophecy\\": "src/Prophecy"
  8851. }
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Konstantin Kudryashov",
  8860. "email": "ever.zet@gmail.com",
  8861. "homepage": "http://everzet.com"
  8862. },
  8863. {
  8864. "name": "Marcello Duarte",
  8865. "email": "marcello.duarte@gmail.com"
  8866. }
  8867. ],
  8868. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8869. "homepage": "https://github.com/phpspec/prophecy",
  8870. "keywords": [
  8871. "Double",
  8872. "Dummy",
  8873. "fake",
  8874. "mock",
  8875. "spy",
  8876. "stub"
  8877. ],
  8878. "support": {
  8879. "issues": "https://github.com/phpspec/prophecy/issues",
  8880. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8881. },
  8882. "time": "2021-03-17T13:42:18+00:00"
  8883. },
  8884. {
  8885. "name": "phpunit/php-code-coverage",
  8886. "version": "7.0.14",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8890. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8895. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8896. "shasum": "",
  8897. "mirrors": [
  8898. {
  8899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8900. "preferred": true
  8901. }
  8902. ]
  8903. },
  8904. "require": {
  8905. "ext-dom": "*",
  8906. "ext-xmlwriter": "*",
  8907. "php": ">=7.2",
  8908. "phpunit/php-file-iterator": "^2.0.2",
  8909. "phpunit/php-text-template": "^1.2.1",
  8910. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8911. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8912. "sebastian/environment": "^4.2.2",
  8913. "sebastian/version": "^2.0.1",
  8914. "theseer/tokenizer": "^1.1.3"
  8915. },
  8916. "require-dev": {
  8917. "phpunit/phpunit": "^8.2.2"
  8918. },
  8919. "suggest": {
  8920. "ext-xdebug": "^2.7.2"
  8921. },
  8922. "type": "library",
  8923. "extra": {
  8924. "branch-alias": {
  8925. "dev-master": "7.0-dev"
  8926. }
  8927. },
  8928. "autoload": {
  8929. "classmap": [
  8930. "src/"
  8931. ]
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "BSD-3-Clause"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Sebastian Bergmann",
  8940. "email": "sebastian@phpunit.de",
  8941. "role": "lead"
  8942. }
  8943. ],
  8944. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8945. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8946. "keywords": [
  8947. "coverage",
  8948. "testing",
  8949. "xunit"
  8950. ],
  8951. "support": {
  8952. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8953. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.14"
  8954. },
  8955. "funding": [
  8956. {
  8957. "url": "https://github.com/sebastianbergmann",
  8958. "type": "github"
  8959. }
  8960. ],
  8961. "time": "2020-12-02T13:39:03+00:00"
  8962. },
  8963. {
  8964. "name": "phpunit/php-file-iterator",
  8965. "version": "2.0.3",
  8966. "source": {
  8967. "type": "git",
  8968. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8969. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8970. },
  8971. "dist": {
  8972. "type": "zip",
  8973. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8974. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8975. "shasum": "",
  8976. "mirrors": [
  8977. {
  8978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8979. "preferred": true
  8980. }
  8981. ]
  8982. },
  8983. "require": {
  8984. "php": ">=7.1"
  8985. },
  8986. "require-dev": {
  8987. "phpunit/phpunit": "^8.5"
  8988. },
  8989. "type": "library",
  8990. "extra": {
  8991. "branch-alias": {
  8992. "dev-master": "2.0.x-dev"
  8993. }
  8994. },
  8995. "autoload": {
  8996. "classmap": [
  8997. "src/"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "BSD-3-Clause"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Sebastian Bergmann",
  9007. "email": "sebastian@phpunit.de",
  9008. "role": "lead"
  9009. }
  9010. ],
  9011. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9012. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9013. "keywords": [
  9014. "filesystem",
  9015. "iterator"
  9016. ],
  9017. "support": {
  9018. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9019. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.3"
  9020. },
  9021. "funding": [
  9022. {
  9023. "url": "https://github.com/sebastianbergmann",
  9024. "type": "github"
  9025. }
  9026. ],
  9027. "time": "2020-11-30T08:25:21+00:00"
  9028. },
  9029. {
  9030. "name": "phpunit/php-text-template",
  9031. "version": "1.2.1",
  9032. "source": {
  9033. "type": "git",
  9034. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9035. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9036. },
  9037. "dist": {
  9038. "type": "zip",
  9039. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9040. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9041. "shasum": "",
  9042. "mirrors": [
  9043. {
  9044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9045. "preferred": true
  9046. }
  9047. ]
  9048. },
  9049. "require": {
  9050. "php": ">=5.3.3"
  9051. },
  9052. "type": "library",
  9053. "autoload": {
  9054. "classmap": [
  9055. "src/"
  9056. ]
  9057. },
  9058. "notification-url": "https://packagist.org/downloads/",
  9059. "license": [
  9060. "BSD-3-Clause"
  9061. ],
  9062. "authors": [
  9063. {
  9064. "name": "Sebastian Bergmann",
  9065. "email": "sebastian@phpunit.de",
  9066. "role": "lead"
  9067. }
  9068. ],
  9069. "description": "Simple template engine.",
  9070. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9071. "keywords": [
  9072. "template"
  9073. ],
  9074. "support": {
  9075. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9076. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  9077. },
  9078. "time": "2015-06-21T13:50:34+00:00"
  9079. },
  9080. {
  9081. "name": "phpunit/php-timer",
  9082. "version": "2.1.3",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9086. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9091. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  9092. "shasum": "",
  9093. "mirrors": [
  9094. {
  9095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9096. "preferred": true
  9097. }
  9098. ]
  9099. },
  9100. "require": {
  9101. "php": ">=7.1"
  9102. },
  9103. "require-dev": {
  9104. "phpunit/phpunit": "^8.5"
  9105. },
  9106. "type": "library",
  9107. "extra": {
  9108. "branch-alias": {
  9109. "dev-master": "2.1-dev"
  9110. }
  9111. },
  9112. "autoload": {
  9113. "classmap": [
  9114. "src/"
  9115. ]
  9116. },
  9117. "notification-url": "https://packagist.org/downloads/",
  9118. "license": [
  9119. "BSD-3-Clause"
  9120. ],
  9121. "authors": [
  9122. {
  9123. "name": "Sebastian Bergmann",
  9124. "email": "sebastian@phpunit.de",
  9125. "role": "lead"
  9126. }
  9127. ],
  9128. "description": "Utility class for timing",
  9129. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9130. "keywords": [
  9131. "timer"
  9132. ],
  9133. "support": {
  9134. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9135. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  9136. },
  9137. "funding": [
  9138. {
  9139. "url": "https://github.com/sebastianbergmann",
  9140. "type": "github"
  9141. }
  9142. ],
  9143. "time": "2020-11-30T08:20:02+00:00"
  9144. },
  9145. {
  9146. "name": "phpunit/php-token-stream",
  9147. "version": "4.0.4",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9151. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9156. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9157. "shasum": "",
  9158. "mirrors": [
  9159. {
  9160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9161. "preferred": true
  9162. }
  9163. ]
  9164. },
  9165. "require": {
  9166. "ext-tokenizer": "*",
  9167. "php": "^7.3 || ^8.0"
  9168. },
  9169. "require-dev": {
  9170. "phpunit/phpunit": "^9.0"
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "branch-alias": {
  9175. "dev-master": "4.0-dev"
  9176. }
  9177. },
  9178. "autoload": {
  9179. "classmap": [
  9180. "src/"
  9181. ]
  9182. },
  9183. "notification-url": "https://packagist.org/downloads/",
  9184. "license": [
  9185. "BSD-3-Clause"
  9186. ],
  9187. "authors": [
  9188. {
  9189. "name": "Sebastian Bergmann",
  9190. "email": "sebastian@phpunit.de"
  9191. }
  9192. ],
  9193. "description": "Wrapper around PHP's tokenizer extension.",
  9194. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9195. "keywords": [
  9196. "tokenizer"
  9197. ],
  9198. "support": {
  9199. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  9200. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  9201. },
  9202. "funding": [
  9203. {
  9204. "url": "https://github.com/sebastianbergmann",
  9205. "type": "github"
  9206. }
  9207. ],
  9208. "abandoned": true,
  9209. "time": "2020-08-04T08:28:15+00:00"
  9210. },
  9211. {
  9212. "name": "phpunit/phpunit",
  9213. "version": "8.5.16",
  9214. "source": {
  9215. "type": "git",
  9216. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9217. "reference": "cc66f2fc61296be66c99931a862200e7456b9a01"
  9218. },
  9219. "dist": {
  9220. "type": "zip",
  9221. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/cc66f2fc61296be66c99931a862200e7456b9a01",
  9222. "reference": "cc66f2fc61296be66c99931a862200e7456b9a01",
  9223. "shasum": "",
  9224. "mirrors": [
  9225. {
  9226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9227. "preferred": true
  9228. }
  9229. ]
  9230. },
  9231. "require": {
  9232. "doctrine/instantiator": "^1.3.1",
  9233. "ext-dom": "*",
  9234. "ext-json": "*",
  9235. "ext-libxml": "*",
  9236. "ext-mbstring": "*",
  9237. "ext-xml": "*",
  9238. "ext-xmlwriter": "*",
  9239. "myclabs/deep-copy": "^1.10.0",
  9240. "phar-io/manifest": "^2.0.1",
  9241. "phar-io/version": "^3.0.2",
  9242. "php": ">=7.2",
  9243. "phpspec/prophecy": "^1.10.3",
  9244. "phpunit/php-code-coverage": "^7.0.12",
  9245. "phpunit/php-file-iterator": "^2.0.2",
  9246. "phpunit/php-text-template": "^1.2.1",
  9247. "phpunit/php-timer": "^2.1.2",
  9248. "sebastian/comparator": "^3.0.2",
  9249. "sebastian/diff": "^3.0.2",
  9250. "sebastian/environment": "^4.2.3",
  9251. "sebastian/exporter": "^3.1.2",
  9252. "sebastian/global-state": "^3.0.0",
  9253. "sebastian/object-enumerator": "^3.0.3",
  9254. "sebastian/resource-operations": "^2.0.1",
  9255. "sebastian/type": "^1.1.3",
  9256. "sebastian/version": "^2.0.1"
  9257. },
  9258. "require-dev": {
  9259. "ext-pdo": "*"
  9260. },
  9261. "suggest": {
  9262. "ext-soap": "*",
  9263. "ext-xdebug": "*",
  9264. "phpunit/php-invoker": "^2.0.0"
  9265. },
  9266. "bin": [
  9267. "phpunit"
  9268. ],
  9269. "type": "library",
  9270. "extra": {
  9271. "branch-alias": {
  9272. "dev-master": "8.5-dev"
  9273. }
  9274. },
  9275. "autoload": {
  9276. "classmap": [
  9277. "src/"
  9278. ]
  9279. },
  9280. "notification-url": "https://packagist.org/downloads/",
  9281. "license": [
  9282. "BSD-3-Clause"
  9283. ],
  9284. "authors": [
  9285. {
  9286. "name": "Sebastian Bergmann",
  9287. "email": "sebastian@phpunit.de",
  9288. "role": "lead"
  9289. }
  9290. ],
  9291. "description": "The PHP Unit Testing framework.",
  9292. "homepage": "https://phpunit.de/",
  9293. "keywords": [
  9294. "phpunit",
  9295. "testing",
  9296. "xunit"
  9297. ],
  9298. "support": {
  9299. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9300. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.16"
  9301. },
  9302. "funding": [
  9303. {
  9304. "url": "https://phpunit.de/donate.html",
  9305. "type": "custom"
  9306. },
  9307. {
  9308. "url": "https://github.com/sebastianbergmann",
  9309. "type": "github"
  9310. }
  9311. ],
  9312. "time": "2021-06-05T04:46:20+00:00"
  9313. },
  9314. {
  9315. "name": "sebastian/code-unit-reverse-lookup",
  9316. "version": "1.0.2",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9320. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9325. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9326. "shasum": "",
  9327. "mirrors": [
  9328. {
  9329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9330. "preferred": true
  9331. }
  9332. ]
  9333. },
  9334. "require": {
  9335. "php": ">=5.6"
  9336. },
  9337. "require-dev": {
  9338. "phpunit/phpunit": "^8.5"
  9339. },
  9340. "type": "library",
  9341. "extra": {
  9342. "branch-alias": {
  9343. "dev-master": "1.0.x-dev"
  9344. }
  9345. },
  9346. "autoload": {
  9347. "classmap": [
  9348. "src/"
  9349. ]
  9350. },
  9351. "notification-url": "https://packagist.org/downloads/",
  9352. "license": [
  9353. "BSD-3-Clause"
  9354. ],
  9355. "authors": [
  9356. {
  9357. "name": "Sebastian Bergmann",
  9358. "email": "sebastian@phpunit.de"
  9359. }
  9360. ],
  9361. "description": "Looks up which function or method a line of code belongs to",
  9362. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9363. "support": {
  9364. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9365. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  9366. },
  9367. "funding": [
  9368. {
  9369. "url": "https://github.com/sebastianbergmann",
  9370. "type": "github"
  9371. }
  9372. ],
  9373. "time": "2020-11-30T08:15:22+00:00"
  9374. },
  9375. {
  9376. "name": "sebastian/comparator",
  9377. "version": "3.0.3",
  9378. "source": {
  9379. "type": "git",
  9380. "url": "https://github.com/sebastianbergmann/comparator.git",
  9381. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9382. },
  9383. "dist": {
  9384. "type": "zip",
  9385. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9386. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9387. "shasum": "",
  9388. "mirrors": [
  9389. {
  9390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9391. "preferred": true
  9392. }
  9393. ]
  9394. },
  9395. "require": {
  9396. "php": ">=7.1",
  9397. "sebastian/diff": "^3.0",
  9398. "sebastian/exporter": "^3.1"
  9399. },
  9400. "require-dev": {
  9401. "phpunit/phpunit": "^8.5"
  9402. },
  9403. "type": "library",
  9404. "extra": {
  9405. "branch-alias": {
  9406. "dev-master": "3.0-dev"
  9407. }
  9408. },
  9409. "autoload": {
  9410. "classmap": [
  9411. "src/"
  9412. ]
  9413. },
  9414. "notification-url": "https://packagist.org/downloads/",
  9415. "license": [
  9416. "BSD-3-Clause"
  9417. ],
  9418. "authors": [
  9419. {
  9420. "name": "Sebastian Bergmann",
  9421. "email": "sebastian@phpunit.de"
  9422. },
  9423. {
  9424. "name": "Jeff Welch",
  9425. "email": "whatthejeff@gmail.com"
  9426. },
  9427. {
  9428. "name": "Volker Dusch",
  9429. "email": "github@wallbash.com"
  9430. },
  9431. {
  9432. "name": "Bernhard Schussek",
  9433. "email": "bschussek@2bepublished.at"
  9434. }
  9435. ],
  9436. "description": "Provides the functionality to compare PHP values for equality",
  9437. "homepage": "https://github.com/sebastianbergmann/comparator",
  9438. "keywords": [
  9439. "comparator",
  9440. "compare",
  9441. "equality"
  9442. ],
  9443. "support": {
  9444. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9445. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.3"
  9446. },
  9447. "funding": [
  9448. {
  9449. "url": "https://github.com/sebastianbergmann",
  9450. "type": "github"
  9451. }
  9452. ],
  9453. "time": "2020-11-30T08:04:30+00:00"
  9454. },
  9455. {
  9456. "name": "sebastian/diff",
  9457. "version": "3.0.3",
  9458. "source": {
  9459. "type": "git",
  9460. "url": "https://github.com/sebastianbergmann/diff.git",
  9461. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9462. },
  9463. "dist": {
  9464. "type": "zip",
  9465. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9466. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9467. "shasum": "",
  9468. "mirrors": [
  9469. {
  9470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9471. "preferred": true
  9472. }
  9473. ]
  9474. },
  9475. "require": {
  9476. "php": ">=7.1"
  9477. },
  9478. "require-dev": {
  9479. "phpunit/phpunit": "^7.5 || ^8.0",
  9480. "symfony/process": "^2 || ^3.3 || ^4"
  9481. },
  9482. "type": "library",
  9483. "extra": {
  9484. "branch-alias": {
  9485. "dev-master": "3.0-dev"
  9486. }
  9487. },
  9488. "autoload": {
  9489. "classmap": [
  9490. "src/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "BSD-3-Clause"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Sebastian Bergmann",
  9500. "email": "sebastian@phpunit.de"
  9501. },
  9502. {
  9503. "name": "Kore Nordmann",
  9504. "email": "mail@kore-nordmann.de"
  9505. }
  9506. ],
  9507. "description": "Diff implementation",
  9508. "homepage": "https://github.com/sebastianbergmann/diff",
  9509. "keywords": [
  9510. "diff",
  9511. "udiff",
  9512. "unidiff",
  9513. "unified diff"
  9514. ],
  9515. "support": {
  9516. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9517. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9518. },
  9519. "funding": [
  9520. {
  9521. "url": "https://github.com/sebastianbergmann",
  9522. "type": "github"
  9523. }
  9524. ],
  9525. "time": "2020-11-30T07:59:04+00:00"
  9526. },
  9527. {
  9528. "name": "sebastian/environment",
  9529. "version": "4.2.4",
  9530. "source": {
  9531. "type": "git",
  9532. "url": "https://github.com/sebastianbergmann/environment.git",
  9533. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9534. },
  9535. "dist": {
  9536. "type": "zip",
  9537. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9538. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9539. "shasum": "",
  9540. "mirrors": [
  9541. {
  9542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9543. "preferred": true
  9544. }
  9545. ]
  9546. },
  9547. "require": {
  9548. "php": ">=7.1"
  9549. },
  9550. "require-dev": {
  9551. "phpunit/phpunit": "^7.5"
  9552. },
  9553. "suggest": {
  9554. "ext-posix": "*"
  9555. },
  9556. "type": "library",
  9557. "extra": {
  9558. "branch-alias": {
  9559. "dev-master": "4.2-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "classmap": [
  9564. "src/"
  9565. ]
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "BSD-3-Clause"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Sebastian Bergmann",
  9574. "email": "sebastian@phpunit.de"
  9575. }
  9576. ],
  9577. "description": "Provides functionality to handle HHVM/PHP environments",
  9578. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9579. "keywords": [
  9580. "Xdebug",
  9581. "environment",
  9582. "hhvm"
  9583. ],
  9584. "support": {
  9585. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9586. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://github.com/sebastianbergmann",
  9591. "type": "github"
  9592. }
  9593. ],
  9594. "time": "2020-11-30T07:53:42+00:00"
  9595. },
  9596. {
  9597. "name": "sebastian/exporter",
  9598. "version": "3.1.3",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/sebastianbergmann/exporter.git",
  9602. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9607. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9608. "shasum": "",
  9609. "mirrors": [
  9610. {
  9611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9612. "preferred": true
  9613. }
  9614. ]
  9615. },
  9616. "require": {
  9617. "php": ">=7.0",
  9618. "sebastian/recursion-context": "^3.0"
  9619. },
  9620. "require-dev": {
  9621. "ext-mbstring": "*",
  9622. "phpunit/phpunit": "^6.0"
  9623. },
  9624. "type": "library",
  9625. "extra": {
  9626. "branch-alias": {
  9627. "dev-master": "3.1.x-dev"
  9628. }
  9629. },
  9630. "autoload": {
  9631. "classmap": [
  9632. "src/"
  9633. ]
  9634. },
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "license": [
  9637. "BSD-3-Clause"
  9638. ],
  9639. "authors": [
  9640. {
  9641. "name": "Sebastian Bergmann",
  9642. "email": "sebastian@phpunit.de"
  9643. },
  9644. {
  9645. "name": "Jeff Welch",
  9646. "email": "whatthejeff@gmail.com"
  9647. },
  9648. {
  9649. "name": "Volker Dusch",
  9650. "email": "github@wallbash.com"
  9651. },
  9652. {
  9653. "name": "Adam Harvey",
  9654. "email": "aharvey@php.net"
  9655. },
  9656. {
  9657. "name": "Bernhard Schussek",
  9658. "email": "bschussek@gmail.com"
  9659. }
  9660. ],
  9661. "description": "Provides the functionality to export PHP variables for visualization",
  9662. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9663. "keywords": [
  9664. "export",
  9665. "exporter"
  9666. ],
  9667. "support": {
  9668. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9669. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3"
  9670. },
  9671. "funding": [
  9672. {
  9673. "url": "https://github.com/sebastianbergmann",
  9674. "type": "github"
  9675. }
  9676. ],
  9677. "time": "2020-11-30T07:47:53+00:00"
  9678. },
  9679. {
  9680. "name": "sebastian/global-state",
  9681. "version": "3.0.1",
  9682. "source": {
  9683. "type": "git",
  9684. "url": "https://github.com/sebastianbergmann/global-state.git",
  9685. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9686. },
  9687. "dist": {
  9688. "type": "zip",
  9689. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9690. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9691. "shasum": "",
  9692. "mirrors": [
  9693. {
  9694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9695. "preferred": true
  9696. }
  9697. ]
  9698. },
  9699. "require": {
  9700. "php": ">=7.2",
  9701. "sebastian/object-reflector": "^1.1.1",
  9702. "sebastian/recursion-context": "^3.0"
  9703. },
  9704. "require-dev": {
  9705. "ext-dom": "*",
  9706. "phpunit/phpunit": "^8.0"
  9707. },
  9708. "suggest": {
  9709. "ext-uopz": "*"
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-master": "3.0-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "classmap": [
  9719. "src/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "BSD-3-Clause"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Sebastian Bergmann",
  9729. "email": "sebastian@phpunit.de"
  9730. }
  9731. ],
  9732. "description": "Snapshotting of global state",
  9733. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9734. "keywords": [
  9735. "global state"
  9736. ],
  9737. "support": {
  9738. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9739. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.1"
  9740. },
  9741. "funding": [
  9742. {
  9743. "url": "https://github.com/sebastianbergmann",
  9744. "type": "github"
  9745. }
  9746. ],
  9747. "time": "2020-11-30T07:43:24+00:00"
  9748. },
  9749. {
  9750. "name": "sebastian/object-enumerator",
  9751. "version": "3.0.4",
  9752. "source": {
  9753. "type": "git",
  9754. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9755. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9756. },
  9757. "dist": {
  9758. "type": "zip",
  9759. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9760. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9761. "shasum": "",
  9762. "mirrors": [
  9763. {
  9764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9765. "preferred": true
  9766. }
  9767. ]
  9768. },
  9769. "require": {
  9770. "php": ">=7.0",
  9771. "sebastian/object-reflector": "^1.1.1",
  9772. "sebastian/recursion-context": "^3.0"
  9773. },
  9774. "require-dev": {
  9775. "phpunit/phpunit": "^6.0"
  9776. },
  9777. "type": "library",
  9778. "extra": {
  9779. "branch-alias": {
  9780. "dev-master": "3.0.x-dev"
  9781. }
  9782. },
  9783. "autoload": {
  9784. "classmap": [
  9785. "src/"
  9786. ]
  9787. },
  9788. "notification-url": "https://packagist.org/downloads/",
  9789. "license": [
  9790. "BSD-3-Clause"
  9791. ],
  9792. "authors": [
  9793. {
  9794. "name": "Sebastian Bergmann",
  9795. "email": "sebastian@phpunit.de"
  9796. }
  9797. ],
  9798. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9799. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9800. "support": {
  9801. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9802. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2020-11-30T07:40:27+00:00"
  9811. },
  9812. {
  9813. "name": "sebastian/object-reflector",
  9814. "version": "1.1.2",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9818. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9823. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9824. "shasum": "",
  9825. "mirrors": [
  9826. {
  9827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9828. "preferred": true
  9829. }
  9830. ]
  9831. },
  9832. "require": {
  9833. "php": ">=7.0"
  9834. },
  9835. "require-dev": {
  9836. "phpunit/phpunit": "^6.0"
  9837. },
  9838. "type": "library",
  9839. "extra": {
  9840. "branch-alias": {
  9841. "dev-master": "1.1-dev"
  9842. }
  9843. },
  9844. "autoload": {
  9845. "classmap": [
  9846. "src/"
  9847. ]
  9848. },
  9849. "notification-url": "https://packagist.org/downloads/",
  9850. "license": [
  9851. "BSD-3-Clause"
  9852. ],
  9853. "authors": [
  9854. {
  9855. "name": "Sebastian Bergmann",
  9856. "email": "sebastian@phpunit.de"
  9857. }
  9858. ],
  9859. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9860. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9861. "support": {
  9862. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9863. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  9864. },
  9865. "funding": [
  9866. {
  9867. "url": "https://github.com/sebastianbergmann",
  9868. "type": "github"
  9869. }
  9870. ],
  9871. "time": "2020-11-30T07:37:18+00:00"
  9872. },
  9873. {
  9874. "name": "sebastian/recursion-context",
  9875. "version": "3.0.1",
  9876. "source": {
  9877. "type": "git",
  9878. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9879. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9880. },
  9881. "dist": {
  9882. "type": "zip",
  9883. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9884. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9885. "shasum": "",
  9886. "mirrors": [
  9887. {
  9888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9889. "preferred": true
  9890. }
  9891. ]
  9892. },
  9893. "require": {
  9894. "php": ">=7.0"
  9895. },
  9896. "require-dev": {
  9897. "phpunit/phpunit": "^6.0"
  9898. },
  9899. "type": "library",
  9900. "extra": {
  9901. "branch-alias": {
  9902. "dev-master": "3.0.x-dev"
  9903. }
  9904. },
  9905. "autoload": {
  9906. "classmap": [
  9907. "src/"
  9908. ]
  9909. },
  9910. "notification-url": "https://packagist.org/downloads/",
  9911. "license": [
  9912. "BSD-3-Clause"
  9913. ],
  9914. "authors": [
  9915. {
  9916. "name": "Sebastian Bergmann",
  9917. "email": "sebastian@phpunit.de"
  9918. },
  9919. {
  9920. "name": "Jeff Welch",
  9921. "email": "whatthejeff@gmail.com"
  9922. },
  9923. {
  9924. "name": "Adam Harvey",
  9925. "email": "aharvey@php.net"
  9926. }
  9927. ],
  9928. "description": "Provides functionality to recursively process PHP variables",
  9929. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9930. "support": {
  9931. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9932. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  9933. },
  9934. "funding": [
  9935. {
  9936. "url": "https://github.com/sebastianbergmann",
  9937. "type": "github"
  9938. }
  9939. ],
  9940. "time": "2020-11-30T07:34:24+00:00"
  9941. },
  9942. {
  9943. "name": "sebastian/resource-operations",
  9944. "version": "2.0.2",
  9945. "source": {
  9946. "type": "git",
  9947. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9948. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9949. },
  9950. "dist": {
  9951. "type": "zip",
  9952. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9953. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9954. "shasum": "",
  9955. "mirrors": [
  9956. {
  9957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9958. "preferred": true
  9959. }
  9960. ]
  9961. },
  9962. "require": {
  9963. "php": ">=7.1"
  9964. },
  9965. "type": "library",
  9966. "extra": {
  9967. "branch-alias": {
  9968. "dev-master": "2.0-dev"
  9969. }
  9970. },
  9971. "autoload": {
  9972. "classmap": [
  9973. "src/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "BSD-3-Clause"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Sebastian Bergmann",
  9983. "email": "sebastian@phpunit.de"
  9984. }
  9985. ],
  9986. "description": "Provides a list of PHP built-in functions that operate on resources",
  9987. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9988. "support": {
  9989. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  9990. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  9991. },
  9992. "funding": [
  9993. {
  9994. "url": "https://github.com/sebastianbergmann",
  9995. "type": "github"
  9996. }
  9997. ],
  9998. "abandoned": true,
  9999. "time": "2020-11-30T07:30:19+00:00"
  10000. },
  10001. {
  10002. "name": "sebastian/type",
  10003. "version": "1.1.4",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/sebastianbergmann/type.git",
  10007. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10012. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10013. "shasum": "",
  10014. "mirrors": [
  10015. {
  10016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10017. "preferred": true
  10018. }
  10019. ]
  10020. },
  10021. "require": {
  10022. "php": ">=7.2"
  10023. },
  10024. "require-dev": {
  10025. "phpunit/phpunit": "^8.2"
  10026. },
  10027. "type": "library",
  10028. "extra": {
  10029. "branch-alias": {
  10030. "dev-master": "1.1-dev"
  10031. }
  10032. },
  10033. "autoload": {
  10034. "classmap": [
  10035. "src/"
  10036. ]
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "BSD-3-Clause"
  10041. ],
  10042. "authors": [
  10043. {
  10044. "name": "Sebastian Bergmann",
  10045. "email": "sebastian@phpunit.de",
  10046. "role": "lead"
  10047. }
  10048. ],
  10049. "description": "Collection of value objects that represent the types of the PHP type system",
  10050. "homepage": "https://github.com/sebastianbergmann/type",
  10051. "support": {
  10052. "issues": "https://github.com/sebastianbergmann/type/issues",
  10053. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10054. },
  10055. "funding": [
  10056. {
  10057. "url": "https://github.com/sebastianbergmann",
  10058. "type": "github"
  10059. }
  10060. ],
  10061. "time": "2020-11-30T07:25:11+00:00"
  10062. },
  10063. {
  10064. "name": "sebastian/version",
  10065. "version": "2.0.1",
  10066. "source": {
  10067. "type": "git",
  10068. "url": "https://github.com/sebastianbergmann/version.git",
  10069. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  10070. },
  10071. "dist": {
  10072. "type": "zip",
  10073. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  10074. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  10075. "shasum": "",
  10076. "mirrors": [
  10077. {
  10078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10079. "preferred": true
  10080. }
  10081. ]
  10082. },
  10083. "require": {
  10084. "php": ">=5.6"
  10085. },
  10086. "type": "library",
  10087. "extra": {
  10088. "branch-alias": {
  10089. "dev-master": "2.0.x-dev"
  10090. }
  10091. },
  10092. "autoload": {
  10093. "classmap": [
  10094. "src/"
  10095. ]
  10096. },
  10097. "notification-url": "https://packagist.org/downloads/",
  10098. "license": [
  10099. "BSD-3-Clause"
  10100. ],
  10101. "authors": [
  10102. {
  10103. "name": "Sebastian Bergmann",
  10104. "email": "sebastian@phpunit.de",
  10105. "role": "lead"
  10106. }
  10107. ],
  10108. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10109. "homepage": "https://github.com/sebastianbergmann/version",
  10110. "support": {
  10111. "issues": "https://github.com/sebastianbergmann/version/issues",
  10112. "source": "https://github.com/sebastianbergmann/version/tree/master"
  10113. },
  10114. "time": "2016-10-03T07:35:21+00:00"
  10115. },
  10116. {
  10117. "name": "symfony/debug",
  10118. "version": "v4.4.25",
  10119. "source": {
  10120. "type": "git",
  10121. "url": "https://github.com/symfony/debug.git",
  10122. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f"
  10123. },
  10124. "dist": {
  10125. "type": "zip",
  10126. "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10127. "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f",
  10128. "shasum": "",
  10129. "mirrors": [
  10130. {
  10131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10132. "preferred": true
  10133. }
  10134. ]
  10135. },
  10136. "require": {
  10137. "php": ">=7.1.3",
  10138. "psr/log": "~1.0",
  10139. "symfony/polyfill-php80": "^1.15"
  10140. },
  10141. "conflict": {
  10142. "symfony/http-kernel": "<3.4"
  10143. },
  10144. "require-dev": {
  10145. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  10146. },
  10147. "type": "library",
  10148. "autoload": {
  10149. "psr-4": {
  10150. "Symfony\\Component\\Debug\\": ""
  10151. },
  10152. "exclude-from-classmap": [
  10153. "/Tests/"
  10154. ]
  10155. },
  10156. "notification-url": "https://packagist.org/downloads/",
  10157. "license": [
  10158. "MIT"
  10159. ],
  10160. "authors": [
  10161. {
  10162. "name": "Fabien Potencier",
  10163. "email": "fabien@symfony.com"
  10164. },
  10165. {
  10166. "name": "Symfony Community",
  10167. "homepage": "https://symfony.com/contributors"
  10168. }
  10169. ],
  10170. "description": "Provides tools to ease debugging PHP code",
  10171. "homepage": "https://symfony.com",
  10172. "support": {
  10173. "source": "https://github.com/symfony/debug/tree/v4.4.25"
  10174. },
  10175. "funding": [
  10176. {
  10177. "url": "https://symfony.com/sponsor",
  10178. "type": "custom"
  10179. },
  10180. {
  10181. "url": "https://github.com/fabpot",
  10182. "type": "github"
  10183. },
  10184. {
  10185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10186. "type": "tidelift"
  10187. }
  10188. ],
  10189. "time": "2021-05-26T17:39:37+00:00"
  10190. },
  10191. {
  10192. "name": "theseer/tokenizer",
  10193. "version": "1.2.0",
  10194. "source": {
  10195. "type": "git",
  10196. "url": "https://github.com/theseer/tokenizer.git",
  10197. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  10198. },
  10199. "dist": {
  10200. "type": "zip",
  10201. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  10202. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  10203. "shasum": "",
  10204. "mirrors": [
  10205. {
  10206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10207. "preferred": true
  10208. }
  10209. ]
  10210. },
  10211. "require": {
  10212. "ext-dom": "*",
  10213. "ext-tokenizer": "*",
  10214. "ext-xmlwriter": "*",
  10215. "php": "^7.2 || ^8.0"
  10216. },
  10217. "type": "library",
  10218. "autoload": {
  10219. "classmap": [
  10220. "src/"
  10221. ]
  10222. },
  10223. "notification-url": "https://packagist.org/downloads/",
  10224. "license": [
  10225. "BSD-3-Clause"
  10226. ],
  10227. "authors": [
  10228. {
  10229. "name": "Arne Blankerts",
  10230. "email": "arne@blankerts.de",
  10231. "role": "Developer"
  10232. }
  10233. ],
  10234. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10235. "support": {
  10236. "issues": "https://github.com/theseer/tokenizer/issues",
  10237. "source": "https://github.com/theseer/tokenizer/tree/master"
  10238. },
  10239. "funding": [
  10240. {
  10241. "url": "https://github.com/theseer",
  10242. "type": "github"
  10243. }
  10244. ],
  10245. "time": "2020-07-12T23:59:07+00:00"
  10246. },
  10247. {
  10248. "name": "webmozart/assert",
  10249. "version": "1.10.0",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/webmozarts/assert.git",
  10253. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  10258. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  10259. "shasum": "",
  10260. "mirrors": [
  10261. {
  10262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10263. "preferred": true
  10264. }
  10265. ]
  10266. },
  10267. "require": {
  10268. "php": "^7.2 || ^8.0",
  10269. "symfony/polyfill-ctype": "^1.8"
  10270. },
  10271. "conflict": {
  10272. "phpstan/phpstan": "<0.12.20",
  10273. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10274. },
  10275. "require-dev": {
  10276. "phpunit/phpunit": "^8.5.13"
  10277. },
  10278. "type": "library",
  10279. "extra": {
  10280. "branch-alias": {
  10281. "dev-master": "1.10-dev"
  10282. }
  10283. },
  10284. "autoload": {
  10285. "psr-4": {
  10286. "Webmozart\\Assert\\": "src/"
  10287. }
  10288. },
  10289. "notification-url": "https://packagist.org/downloads/",
  10290. "license": [
  10291. "MIT"
  10292. ],
  10293. "authors": [
  10294. {
  10295. "name": "Bernhard Schussek",
  10296. "email": "bschussek@gmail.com"
  10297. }
  10298. ],
  10299. "description": "Assertions to validate method input/output with nice error messages.",
  10300. "keywords": [
  10301. "assert",
  10302. "check",
  10303. "validate"
  10304. ],
  10305. "support": {
  10306. "issues": "https://github.com/webmozarts/assert/issues",
  10307. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  10308. },
  10309. "time": "2021-03-09T10:59:23+00:00"
  10310. }
  10311. ],
  10312. "aliases": [],
  10313. "minimum-stability": "dev",
  10314. "stability-flags": [],
  10315. "prefer-stable": true,
  10316. "prefer-lowest": false,
  10317. "platform": {
  10318. "php": "^7.2.14",
  10319. "ext-bcmath": "*",
  10320. "ext-json": "*",
  10321. "ext-mbstring": "*",
  10322. "ext-openssl": "*",
  10323. "ext-pdo": "*"
  10324. },
  10325. "platform-dev": [],
  10326. "platform-overrides": {
  10327. "ext-pcntl": "7.2",
  10328. "ext-posix": "7.2"
  10329. },
  10330. "plugin-api-version": "2.1.0"
  10331. }