composer.lock 333 KB

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