composer.lock 322 KB

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