composer.lock 308 KB

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