composer.lock 334 KB

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