composer.lock 312 KB

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