composer.lock 312 KB

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