composer.lock 302 KB

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