composer.lock 280 KB

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