composer.lock 371 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412
  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": "0830e99359c751fbe6d3c69908ff11bd",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  20. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  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. "php": "^7.0|^8.0",
  31. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  32. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^6|^7|^8|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.0-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "time": "2021-03-11T06:42:03+00:00"
  66. },
  67. {
  68. "name": "box/spout",
  69. "version": "v3.3.0",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/box/spout.git",
  73. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  78. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  79. "shasum": "",
  80. "mirrors": [
  81. {
  82. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  83. "preferred": true
  84. }
  85. ]
  86. },
  87. "require": {
  88. "ext-dom": "*",
  89. "ext-xmlreader": "*",
  90. "ext-zip": "*",
  91. "php": ">=7.2.0"
  92. },
  93. "require-dev": {
  94. "friendsofphp/php-cs-fixer": "^2",
  95. "phpunit/phpunit": "^8"
  96. },
  97. "suggest": {
  98. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  99. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  100. },
  101. "type": "library",
  102. "extra": {
  103. "branch-alias": {
  104. "dev-master": "3.1.x-dev"
  105. }
  106. },
  107. "autoload": {
  108. "psr-4": {
  109. "Box\\Spout\\": "src/Spout"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Adrien Loison",
  119. "email": "adrien@box.com"
  120. }
  121. ],
  122. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  123. "homepage": "https://www.github.com/box/spout",
  124. "keywords": [
  125. "OOXML",
  126. "csv",
  127. "excel",
  128. "memory",
  129. "odf",
  130. "ods",
  131. "office",
  132. "open",
  133. "php",
  134. "read",
  135. "scale",
  136. "spreadsheet",
  137. "stream",
  138. "write",
  139. "xlsx"
  140. ],
  141. "support": {
  142. "issues": "https://github.com/box/spout/issues",
  143. "source": "https://github.com/box/spout/tree/v3.3.0"
  144. },
  145. "time": "2021-05-14T21:18:09+00:00"
  146. },
  147. {
  148. "name": "brick/math",
  149. "version": "0.9.2",
  150. "source": {
  151. "type": "git",
  152. "url": "https://github.com/brick/math.git",
  153. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  154. },
  155. "dist": {
  156. "type": "zip",
  157. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  158. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  159. "shasum": "",
  160. "mirrors": [
  161. {
  162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  163. "preferred": true
  164. }
  165. ]
  166. },
  167. "require": {
  168. "ext-json": "*",
  169. "php": "^7.1 || ^8.0"
  170. },
  171. "require-dev": {
  172. "php-coveralls/php-coveralls": "^2.2",
  173. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  174. "vimeo/psalm": "4.3.2"
  175. },
  176. "type": "library",
  177. "autoload": {
  178. "psr-4": {
  179. "Brick\\Math\\": "src/"
  180. }
  181. },
  182. "notification-url": "https://packagist.org/downloads/",
  183. "license": [
  184. "MIT"
  185. ],
  186. "description": "Arbitrary-precision arithmetic library",
  187. "keywords": [
  188. "Arbitrary-precision",
  189. "BigInteger",
  190. "BigRational",
  191. "arithmetic",
  192. "bigdecimal",
  193. "bignum",
  194. "brick",
  195. "math"
  196. ],
  197. "time": "2021-01-20T22:51:39+00:00"
  198. },
  199. {
  200. "name": "composer/package-versions-deprecated",
  201. "version": "1.11.99.2",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/package-versions-deprecated.git",
  205. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  210. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  211. "shasum": "",
  212. "mirrors": [
  213. {
  214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  215. "preferred": true
  216. }
  217. ]
  218. },
  219. "require": {
  220. "composer-plugin-api": "^1.1.0 || ^2.0",
  221. "php": "^7 || ^8"
  222. },
  223. "replace": {
  224. "ocramius/package-versions": "1.11.99"
  225. },
  226. "require-dev": {
  227. "composer/composer": "^1.9.3 || ^2.0@dev",
  228. "ext-zip": "^1.13",
  229. "phpunit/phpunit": "^6.5 || ^7"
  230. },
  231. "type": "composer-plugin",
  232. "extra": {
  233. "class": "PackageVersions\\Installer",
  234. "branch-alias": {
  235. "dev-master": "1.x-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "PackageVersions\\": "src/PackageVersions"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Marco Pivetta",
  250. "email": "ocramius@gmail.com"
  251. },
  252. {
  253. "name": "Jordi Boggiano",
  254. "email": "j.boggiano@seld.be"
  255. }
  256. ],
  257. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  258. "support": {
  259. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  260. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
  261. },
  262. "funding": [
  263. {
  264. "url": "https://packagist.com",
  265. "type": "custom"
  266. },
  267. {
  268. "url": "https://github.com/composer",
  269. "type": "github"
  270. },
  271. {
  272. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  273. "type": "tidelift"
  274. }
  275. ],
  276. "time": "2021-05-24T07:46:03+00:00"
  277. },
  278. {
  279. "name": "dcat/easy-excel",
  280. "version": "1.0.5",
  281. "source": {
  282. "type": "git",
  283. "url": "https://github.com/jqhph/easy-excel.git",
  284. "reference": "da0565ae0a31b306947222c4e014054a7172e4c4"
  285. },
  286. "dist": {
  287. "type": "zip",
  288. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/da0565ae0a31b306947222c4e014054a7172e4c4",
  289. "reference": "da0565ae0a31b306947222c4e014054a7172e4c4",
  290. "shasum": "",
  291. "mirrors": [
  292. {
  293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  294. "preferred": true
  295. }
  296. ]
  297. },
  298. "require": {
  299. "box/spout": "~3",
  300. "league/flysystem": "~1|~2",
  301. "php": ">=7.1.0"
  302. },
  303. "require-dev": {
  304. "friendsofphp/php-cs-fixer": "^2",
  305. "phpunit/phpunit": "~7|~8.0"
  306. },
  307. "type": "library",
  308. "autoload": {
  309. "psr-4": {
  310. "Dcat\\EasyExcel\\": "src/"
  311. }
  312. },
  313. "notification-url": "https://packagist.org/downloads/",
  314. "license": [
  315. "MIT"
  316. ],
  317. "authors": [
  318. {
  319. "name": "jqh",
  320. "email": "841324345@qq.com"
  321. }
  322. ],
  323. "description": "使用简单实用的语义化接口快速读写Excel文件",
  324. "homepage": "https://github.com/jqhph/easy-excel",
  325. "keywords": [
  326. "box spout",
  327. "csv",
  328. "easy excel",
  329. "excel",
  330. "ods",
  331. "office",
  332. "read",
  333. "spreadsheet",
  334. "stream",
  335. "xlsx"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/jqhph/easy-excel/issues",
  339. "source": "https://github.com/jqhph/easy-excel/tree/1.0.5"
  340. },
  341. "time": "2020-12-14T07:32:36+00:00"
  342. },
  343. {
  344. "name": "dcat/laravel-admin",
  345. "version": "2.1.2-beta",
  346. "source": {
  347. "type": "git",
  348. "url": "https://github.com/jqhph/dcat-admin.git",
  349. "reference": "d7358a089fb9c26e14f1ca3f2f1c050c0ca1c44d"
  350. },
  351. "dist": {
  352. "type": "zip",
  353. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/d7358a089fb9c26e14f1ca3f2f1c050c0ca1c44d",
  354. "reference": "d7358a089fb9c26e14f1ca3f2f1c050c0ca1c44d",
  355. "shasum": "",
  356. "mirrors": [
  357. {
  358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  359. "preferred": true
  360. }
  361. ]
  362. },
  363. "require": {
  364. "doctrine/dbal": "^2.6|^3.0",
  365. "laravel/framework": "~5.5|~6.0|~7.0|~8.0",
  366. "php": ">=7.1.0",
  367. "spatie/eloquent-sortable": "3.*|4.*"
  368. },
  369. "require-dev": {
  370. "fzaninotto/faker": "^1.4",
  371. "laravel/dusk": "~5.9|~6",
  372. "mockery/mockery": "^1.0",
  373. "phpstan/phpstan": "^0.12.0",
  374. "phpunit/phpunit": "^7.5|~9"
  375. },
  376. "type": "library",
  377. "extra": {
  378. "laravel": {
  379. "providers": [
  380. "Dcat\\Admin\\AdminServiceProvider"
  381. ]
  382. }
  383. },
  384. "autoload": {
  385. "psr-4": {
  386. "Dcat\\Admin\\": "src/"
  387. },
  388. "files": [
  389. "src/Support/helpers.php"
  390. ]
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "jqh",
  399. "email": "841324345@qq.com"
  400. }
  401. ],
  402. "description": "dcat admin",
  403. "homepage": "https://github.com/jqhph/dcat-admin",
  404. "keywords": [
  405. "admin",
  406. "dcat",
  407. "form",
  408. "grid",
  409. "laravel",
  410. "laravel admin"
  411. ],
  412. "support": {
  413. "issues": "https://github.com/jqhph/dcat-admin/issues",
  414. "source": "https://github.com/jqhph/dcat-admin/tree/2.1.2-beta"
  415. },
  416. "time": "2021-08-01T15:01:21+00:00"
  417. },
  418. {
  419. "name": "dflydev/dot-access-data",
  420. "version": "v3.0.0",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  424. "reference": "e04ff030d24a33edc2421bef305e32919dd78fc3"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/e04ff030d24a33edc2421bef305e32919dd78fc3",
  429. "reference": "e04ff030d24a33edc2421bef305e32919dd78fc3",
  430. "shasum": "",
  431. "mirrors": [
  432. {
  433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  434. "preferred": true
  435. }
  436. ]
  437. },
  438. "require": {
  439. "php": "^7.1 || ^8.0"
  440. },
  441. "require-dev": {
  442. "phpstan/phpstan": "^0.12.42",
  443. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  444. "scrutinizer/ocular": "1.6.0",
  445. "squizlabs/php_codesniffer": "^3.5",
  446. "vimeo/psalm": "^3.14"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "branch-alias": {
  451. "dev-main": "3.x-dev"
  452. }
  453. },
  454. "autoload": {
  455. "psr-4": {
  456. "Dflydev\\DotAccessData\\": "src/"
  457. }
  458. },
  459. "notification-url": "https://packagist.org/downloads/",
  460. "license": [
  461. "MIT"
  462. ],
  463. "authors": [
  464. {
  465. "name": "Dragonfly Development Inc.",
  466. "email": "info@dflydev.com",
  467. "homepage": "http://dflydev.com"
  468. },
  469. {
  470. "name": "Beau Simensen",
  471. "email": "beau@dflydev.com",
  472. "homepage": "http://beausimensen.com"
  473. },
  474. {
  475. "name": "Carlos Frutos",
  476. "email": "carlos@kiwing.it",
  477. "homepage": "https://github.com/cfrutos"
  478. },
  479. {
  480. "name": "Colin O'Dell",
  481. "email": "colinodell@gmail.com",
  482. "homepage": "https://www.colinodell.com"
  483. }
  484. ],
  485. "description": "Given a deep data structure, access data by dot notation.",
  486. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  487. "keywords": [
  488. "access",
  489. "data",
  490. "dot",
  491. "notation"
  492. ],
  493. "time": "2021-01-01T22:08:42+00:00"
  494. },
  495. {
  496. "name": "dingo/api",
  497. "version": "v3.0.7",
  498. "source": {
  499. "type": "git",
  500. "url": "https://github.com/dingo/api.git",
  501. "reference": "edd912c912d08de17a33aaf2c471d07575723513"
  502. },
  503. "dist": {
  504. "type": "zip",
  505. "url": "https://api.github.com/repos/dingo/api/zipball/edd912c912d08de17a33aaf2c471d07575723513",
  506. "reference": "edd912c912d08de17a33aaf2c471d07575723513",
  507. "shasum": "",
  508. "mirrors": [
  509. {
  510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  511. "preferred": true
  512. }
  513. ]
  514. },
  515. "require": {
  516. "dingo/blueprint": "^0.4",
  517. "illuminate/routing": "^7.0|^8.0",
  518. "illuminate/support": "^7.0|^8.0",
  519. "league/fractal": "^0.19",
  520. "php": "^7.2.5|^8.0"
  521. },
  522. "require-dev": {
  523. "friendsofphp/php-cs-fixer": "~2",
  524. "illuminate/auth": "^7.0|^8.0",
  525. "illuminate/cache": "^7.0|^8.0",
  526. "illuminate/console": "^7.0|^8.0",
  527. "illuminate/database": "^7.0|^8.0",
  528. "illuminate/events": "^7.0|^8.0",
  529. "illuminate/filesystem": "^7.0|^8.0",
  530. "illuminate/log": "^7.0|^8.0",
  531. "illuminate/pagination": "^7.0|^8.0",
  532. "laravel/lumen-framework": "^7.0|^8.0",
  533. "mockery/mockery": "~1.0",
  534. "phpunit/phpunit": "^8.5|^9.0",
  535. "squizlabs/php_codesniffer": "~2.0",
  536. "tymon/jwt-auth": "1.0.*"
  537. },
  538. "suggest": {
  539. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  540. },
  541. "type": "library",
  542. "extra": {
  543. "branch-alias": {
  544. "dev-master": "2.0-dev"
  545. },
  546. "laravel": {
  547. "providers": [
  548. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  549. ],
  550. "aliases": {
  551. "API": "Dingo\\Api\\Facade\\API"
  552. }
  553. }
  554. },
  555. "autoload": {
  556. "psr-4": {
  557. "Dingo\\Api\\": "src/"
  558. },
  559. "files": [
  560. "src/helpers.php"
  561. ]
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "BSD-3-Clause"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Jason Lewis",
  570. "email": "jason.lewis1991@gmail.com"
  571. }
  572. ],
  573. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  574. "keywords": [
  575. "api",
  576. "dingo",
  577. "laravel",
  578. "restful"
  579. ],
  580. "support": {
  581. "issues": "https://github.com/dingo/api/issues",
  582. "source": "https://github.com/dingo/api/tree/v3.0.7"
  583. },
  584. "time": "2021-05-02T12:17:42+00:00"
  585. },
  586. {
  587. "name": "dingo/blueprint",
  588. "version": "v0.4.2",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/dingo/blueprint.git",
  592. "reference": "c330027bc85ef76639b27a900f511ce4270e28bf"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/dingo/blueprint/zipball/c330027bc85ef76639b27a900f511ce4270e28bf",
  597. "reference": "c330027bc85ef76639b27a900f511ce4270e28bf",
  598. "shasum": "",
  599. "mirrors": [
  600. {
  601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  602. "preferred": true
  603. }
  604. ]
  605. },
  606. "require": {
  607. "doctrine/annotations": "~1.2",
  608. "illuminate/filesystem": "^7.0|^8.0",
  609. "illuminate/support": "^7.0|^8.0",
  610. "php": "^7.2.5",
  611. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  612. },
  613. "require-dev": {
  614. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  615. "squizlabs/php_codesniffer": "~2.0"
  616. },
  617. "type": "library",
  618. "extra": {
  619. "branch-alias": {
  620. "dev-master": "0.2-dev"
  621. }
  622. },
  623. "autoload": {
  624. "psr-4": {
  625. "Dingo\\Blueprint\\": "src"
  626. }
  627. },
  628. "notification-url": "https://packagist.org/downloads/",
  629. "license": [
  630. "BSD-3-Clause"
  631. ],
  632. "authors": [
  633. {
  634. "name": "Jason Lewis",
  635. "email": "jason.lewis1991@gmail.com"
  636. }
  637. ],
  638. "description": "API Blueprint documentation generator.",
  639. "keywords": [
  640. "api",
  641. "blueprint",
  642. "dingo",
  643. "docs",
  644. "laravel"
  645. ],
  646. "support": {
  647. "issues": "https://github.com/dingo/blueprint/issues",
  648. "source": "https://github.com/dingo/blueprint/tree/v0.4.2"
  649. },
  650. "time": "2020-09-13T12:32:17+00:00"
  651. },
  652. {
  653. "name": "doctrine/annotations",
  654. "version": "1.13.2",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/doctrine/annotations.git",
  658. "reference": "5b668aef16090008790395c02c893b1ba13f7e08"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08",
  663. "reference": "5b668aef16090008790395c02c893b1ba13f7e08",
  664. "shasum": "",
  665. "mirrors": [
  666. {
  667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  668. "preferred": true
  669. }
  670. ]
  671. },
  672. "require": {
  673. "doctrine/lexer": "1.*",
  674. "ext-tokenizer": "*",
  675. "php": "^7.1 || ^8.0",
  676. "psr/cache": "^1 || ^2 || ^3"
  677. },
  678. "require-dev": {
  679. "doctrine/cache": "^1.11 || ^2.0",
  680. "doctrine/coding-standard": "^6.0 || ^8.1",
  681. "phpstan/phpstan": "^0.12.20",
  682. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  683. "symfony/cache": "^4.4 || ^5.2"
  684. },
  685. "type": "library",
  686. "autoload": {
  687. "psr-4": {
  688. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Guilherme Blanco",
  698. "email": "guilhermeblanco@gmail.com"
  699. },
  700. {
  701. "name": "Roman Borschel",
  702. "email": "roman@code-factory.org"
  703. },
  704. {
  705. "name": "Benjamin Eberlei",
  706. "email": "kontakt@beberlei.de"
  707. },
  708. {
  709. "name": "Jonathan Wage",
  710. "email": "jonwage@gmail.com"
  711. },
  712. {
  713. "name": "Johannes Schmitt",
  714. "email": "schmittjoh@gmail.com"
  715. }
  716. ],
  717. "description": "Docblock Annotations Parser",
  718. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  719. "keywords": [
  720. "annotations",
  721. "docblock",
  722. "parser"
  723. ],
  724. "support": {
  725. "issues": "https://github.com/doctrine/annotations/issues",
  726. "source": "https://github.com/doctrine/annotations/tree/1.13.2"
  727. },
  728. "time": "2021-08-05T19:00:23+00:00"
  729. },
  730. {
  731. "name": "doctrine/cache",
  732. "version": "2.1.1",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/doctrine/cache.git",
  736. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  741. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  742. "shasum": "",
  743. "mirrors": [
  744. {
  745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  746. "preferred": true
  747. }
  748. ]
  749. },
  750. "require": {
  751. "php": "~7.1 || ^8.0"
  752. },
  753. "conflict": {
  754. "doctrine/common": ">2.2,<2.4"
  755. },
  756. "require-dev": {
  757. "alcaeus/mongo-php-adapter": "^1.1",
  758. "cache/integration-tests": "dev-master",
  759. "doctrine/coding-standard": "^8.0",
  760. "mongodb/mongodb": "^1.1",
  761. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  762. "predis/predis": "~1.0",
  763. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  764. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  765. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  766. },
  767. "suggest": {
  768. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  769. },
  770. "type": "library",
  771. "autoload": {
  772. "psr-4": {
  773. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Guilherme Blanco",
  783. "email": "guilhermeblanco@gmail.com"
  784. },
  785. {
  786. "name": "Roman Borschel",
  787. "email": "roman@code-factory.org"
  788. },
  789. {
  790. "name": "Benjamin Eberlei",
  791. "email": "kontakt@beberlei.de"
  792. },
  793. {
  794. "name": "Jonathan Wage",
  795. "email": "jonwage@gmail.com"
  796. },
  797. {
  798. "name": "Johannes Schmitt",
  799. "email": "schmittjoh@gmail.com"
  800. }
  801. ],
  802. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  803. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  804. "keywords": [
  805. "abstraction",
  806. "apcu",
  807. "cache",
  808. "caching",
  809. "couchdb",
  810. "memcached",
  811. "php",
  812. "redis",
  813. "xcache"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/doctrine/cache/issues",
  817. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://www.doctrine-project.org/sponsorship.html",
  822. "type": "custom"
  823. },
  824. {
  825. "url": "https://www.patreon.com/phpdoctrine",
  826. "type": "patreon"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2021-07-17T14:49:29+00:00"
  834. },
  835. {
  836. "name": "doctrine/dbal",
  837. "version": "3.1.1",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/doctrine/dbal.git",
  841. "reference": "8e0fde2b90e3f61361013d1e928621beeea07bc0"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8e0fde2b90e3f61361013d1e928621beeea07bc0",
  846. "reference": "8e0fde2b90e3f61361013d1e928621beeea07bc0",
  847. "shasum": "",
  848. "mirrors": [
  849. {
  850. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  851. "preferred": true
  852. }
  853. ]
  854. },
  855. "require": {
  856. "composer/package-versions-deprecated": "^1.11.99",
  857. "doctrine/cache": "^1.0|^2.0",
  858. "doctrine/deprecations": "^0.5.3",
  859. "doctrine/event-manager": "^1.0",
  860. "php": "^7.3 || ^8.0"
  861. },
  862. "require-dev": {
  863. "doctrine/coding-standard": "9.0.0",
  864. "jetbrains/phpstorm-stubs": "2020.2",
  865. "phpstan/phpstan": "0.12.81",
  866. "phpstan/phpstan-strict-rules": "^0.12.2",
  867. "phpunit/phpunit": "9.5.5",
  868. "psalm/plugin-phpunit": "0.13.0",
  869. "squizlabs/php_codesniffer": "3.6.0",
  870. "symfony/cache": "^5.2|^6.0",
  871. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0|^6.0",
  872. "vimeo/psalm": "4.6.4"
  873. },
  874. "suggest": {
  875. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  876. },
  877. "bin": [
  878. "bin/doctrine-dbal"
  879. ],
  880. "type": "library",
  881. "autoload": {
  882. "psr-4": {
  883. "Doctrine\\DBAL\\": "src"
  884. }
  885. },
  886. "notification-url": "https://packagist.org/downloads/",
  887. "license": [
  888. "MIT"
  889. ],
  890. "authors": [
  891. {
  892. "name": "Guilherme Blanco",
  893. "email": "guilhermeblanco@gmail.com"
  894. },
  895. {
  896. "name": "Roman Borschel",
  897. "email": "roman@code-factory.org"
  898. },
  899. {
  900. "name": "Benjamin Eberlei",
  901. "email": "kontakt@beberlei.de"
  902. },
  903. {
  904. "name": "Jonathan Wage",
  905. "email": "jonwage@gmail.com"
  906. }
  907. ],
  908. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  909. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  910. "keywords": [
  911. "abstraction",
  912. "database",
  913. "db2",
  914. "dbal",
  915. "mariadb",
  916. "mssql",
  917. "mysql",
  918. "oci8",
  919. "oracle",
  920. "pdo",
  921. "pgsql",
  922. "postgresql",
  923. "queryobject",
  924. "sasql",
  925. "sql",
  926. "sqlite",
  927. "sqlserver",
  928. "sqlsrv"
  929. ],
  930. "support": {
  931. "issues": "https://github.com/doctrine/dbal/issues",
  932. "source": "https://github.com/doctrine/dbal/tree/3.1.1"
  933. },
  934. "funding": [
  935. {
  936. "url": "https://www.doctrine-project.org/sponsorship.html",
  937. "type": "custom"
  938. },
  939. {
  940. "url": "https://www.patreon.com/phpdoctrine",
  941. "type": "patreon"
  942. },
  943. {
  944. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  945. "type": "tidelift"
  946. }
  947. ],
  948. "time": "2021-06-19T17:59:55+00:00"
  949. },
  950. {
  951. "name": "doctrine/deprecations",
  952. "version": "v0.5.3",
  953. "source": {
  954. "type": "git",
  955. "url": "https://github.com/doctrine/deprecations.git",
  956. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  957. },
  958. "dist": {
  959. "type": "zip",
  960. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  961. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  962. "shasum": "",
  963. "mirrors": [
  964. {
  965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  966. "preferred": true
  967. }
  968. ]
  969. },
  970. "require": {
  971. "php": "^7.1|^8.0"
  972. },
  973. "require-dev": {
  974. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  975. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  976. "psr/log": "^1.0"
  977. },
  978. "suggest": {
  979. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  980. },
  981. "type": "library",
  982. "autoload": {
  983. "psr-4": {
  984. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  992. "homepage": "https://www.doctrine-project.org/",
  993. "support": {
  994. "issues": "https://github.com/doctrine/deprecations/issues",
  995. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  996. },
  997. "time": "2021-03-21T12:59:47+00:00"
  998. },
  999. {
  1000. "name": "doctrine/event-manager",
  1001. "version": "1.1.1",
  1002. "source": {
  1003. "type": "git",
  1004. "url": "https://github.com/doctrine/event-manager.git",
  1005. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1006. },
  1007. "dist": {
  1008. "type": "zip",
  1009. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1010. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1011. "shasum": "",
  1012. "mirrors": [
  1013. {
  1014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1015. "preferred": true
  1016. }
  1017. ]
  1018. },
  1019. "require": {
  1020. "php": "^7.1 || ^8.0"
  1021. },
  1022. "conflict": {
  1023. "doctrine/common": "<2.9@dev"
  1024. },
  1025. "require-dev": {
  1026. "doctrine/coding-standard": "^6.0",
  1027. "phpunit/phpunit": "^7.0"
  1028. },
  1029. "type": "library",
  1030. "extra": {
  1031. "branch-alias": {
  1032. "dev-master": "1.0.x-dev"
  1033. }
  1034. },
  1035. "autoload": {
  1036. "psr-4": {
  1037. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1038. }
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "Guilherme Blanco",
  1047. "email": "guilhermeblanco@gmail.com"
  1048. },
  1049. {
  1050. "name": "Roman Borschel",
  1051. "email": "roman@code-factory.org"
  1052. },
  1053. {
  1054. "name": "Benjamin Eberlei",
  1055. "email": "kontakt@beberlei.de"
  1056. },
  1057. {
  1058. "name": "Jonathan Wage",
  1059. "email": "jonwage@gmail.com"
  1060. },
  1061. {
  1062. "name": "Johannes Schmitt",
  1063. "email": "schmittjoh@gmail.com"
  1064. },
  1065. {
  1066. "name": "Marco Pivetta",
  1067. "email": "ocramius@gmail.com"
  1068. }
  1069. ],
  1070. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1071. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1072. "keywords": [
  1073. "event",
  1074. "event dispatcher",
  1075. "event manager",
  1076. "event system",
  1077. "events"
  1078. ],
  1079. "support": {
  1080. "issues": "https://github.com/doctrine/event-manager/issues",
  1081. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1082. },
  1083. "funding": [
  1084. {
  1085. "url": "https://www.doctrine-project.org/sponsorship.html",
  1086. "type": "custom"
  1087. },
  1088. {
  1089. "url": "https://www.patreon.com/phpdoctrine",
  1090. "type": "patreon"
  1091. },
  1092. {
  1093. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1094. "type": "tidelift"
  1095. }
  1096. ],
  1097. "time": "2020-05-29T18:28:51+00:00"
  1098. },
  1099. {
  1100. "name": "doctrine/inflector",
  1101. "version": "2.0.3",
  1102. "source": {
  1103. "type": "git",
  1104. "url": "https://github.com/doctrine/inflector.git",
  1105. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1106. },
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1110. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1111. "shasum": "",
  1112. "mirrors": [
  1113. {
  1114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1115. "preferred": true
  1116. }
  1117. ]
  1118. },
  1119. "require": {
  1120. "php": "^7.2 || ^8.0"
  1121. },
  1122. "require-dev": {
  1123. "doctrine/coding-standard": "^7.0",
  1124. "phpstan/phpstan": "^0.11",
  1125. "phpstan/phpstan-phpunit": "^0.11",
  1126. "phpstan/phpstan-strict-rules": "^0.11",
  1127. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1128. },
  1129. "type": "library",
  1130. "extra": {
  1131. "branch-alias": {
  1132. "dev-master": "2.0.x-dev"
  1133. }
  1134. },
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "authors": [
  1145. {
  1146. "name": "Guilherme Blanco",
  1147. "email": "guilhermeblanco@gmail.com"
  1148. },
  1149. {
  1150. "name": "Roman Borschel",
  1151. "email": "roman@code-factory.org"
  1152. },
  1153. {
  1154. "name": "Benjamin Eberlei",
  1155. "email": "kontakt@beberlei.de"
  1156. },
  1157. {
  1158. "name": "Jonathan Wage",
  1159. "email": "jonwage@gmail.com"
  1160. },
  1161. {
  1162. "name": "Johannes Schmitt",
  1163. "email": "schmittjoh@gmail.com"
  1164. }
  1165. ],
  1166. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1167. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1168. "keywords": [
  1169. "inflection",
  1170. "inflector",
  1171. "lowercase",
  1172. "manipulation",
  1173. "php",
  1174. "plural",
  1175. "singular",
  1176. "strings",
  1177. "uppercase",
  1178. "words"
  1179. ],
  1180. "time": "2020-05-29T15:13:26+00:00"
  1181. },
  1182. {
  1183. "name": "doctrine/lexer",
  1184. "version": "1.2.1",
  1185. "source": {
  1186. "type": "git",
  1187. "url": "https://github.com/doctrine/lexer.git",
  1188. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1189. },
  1190. "dist": {
  1191. "type": "zip",
  1192. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1193. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1194. "shasum": "",
  1195. "mirrors": [
  1196. {
  1197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1198. "preferred": true
  1199. }
  1200. ]
  1201. },
  1202. "require": {
  1203. "php": "^7.2 || ^8.0"
  1204. },
  1205. "require-dev": {
  1206. "doctrine/coding-standard": "^6.0",
  1207. "phpstan/phpstan": "^0.11.8",
  1208. "phpunit/phpunit": "^8.2"
  1209. },
  1210. "type": "library",
  1211. "extra": {
  1212. "branch-alias": {
  1213. "dev-master": "1.2.x-dev"
  1214. }
  1215. },
  1216. "autoload": {
  1217. "psr-4": {
  1218. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1219. }
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "authors": [
  1226. {
  1227. "name": "Guilherme Blanco",
  1228. "email": "guilhermeblanco@gmail.com"
  1229. },
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Johannes Schmitt",
  1236. "email": "schmittjoh@gmail.com"
  1237. }
  1238. ],
  1239. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1240. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1241. "keywords": [
  1242. "annotations",
  1243. "docblock",
  1244. "lexer",
  1245. "parser",
  1246. "php"
  1247. ],
  1248. "time": "2020-05-25T17:44:05+00:00"
  1249. },
  1250. {
  1251. "name": "dragonmantank/cron-expression",
  1252. "version": "v3.1.0",
  1253. "source": {
  1254. "type": "git",
  1255. "url": "https://github.com/dragonmantank/cron-expression.git",
  1256. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  1257. },
  1258. "dist": {
  1259. "type": "zip",
  1260. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1261. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1262. "shasum": "",
  1263. "mirrors": [
  1264. {
  1265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1266. "preferred": true
  1267. }
  1268. ]
  1269. },
  1270. "require": {
  1271. "php": "^7.2|^8.0",
  1272. "webmozart/assert": "^1.7.0"
  1273. },
  1274. "replace": {
  1275. "mtdowling/cron-expression": "^1.0"
  1276. },
  1277. "require-dev": {
  1278. "phpstan/extension-installer": "^1.0",
  1279. "phpstan/phpstan": "^0.12",
  1280. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  1281. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1282. },
  1283. "type": "library",
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Cron\\": "src/Cron/"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Chris Tankersley",
  1296. "email": "chris@ctankersley.com",
  1297. "homepage": "https://github.com/dragonmantank"
  1298. }
  1299. ],
  1300. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1301. "keywords": [
  1302. "cron",
  1303. "schedule"
  1304. ],
  1305. "time": "2020-11-24T19:55:57+00:00"
  1306. },
  1307. {
  1308. "name": "easywechat-composer/easywechat-composer",
  1309. "version": "1.4.1",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1313. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1318. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1319. "shasum": "",
  1320. "mirrors": [
  1321. {
  1322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1323. "preferred": true
  1324. }
  1325. ]
  1326. },
  1327. "require": {
  1328. "composer-plugin-api": "^1.0 || ^2.0",
  1329. "php": ">=7.0"
  1330. },
  1331. "require-dev": {
  1332. "composer/composer": "^1.0 || ^2.0",
  1333. "phpunit/phpunit": "^6.5 || ^7.0"
  1334. },
  1335. "type": "composer-plugin",
  1336. "extra": {
  1337. "class": "EasyWeChatComposer\\Plugin"
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "EasyWeChatComposer\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "张铭阳",
  1351. "email": "mingyoungcheung@gmail.com"
  1352. }
  1353. ],
  1354. "description": "The composer plugin for EasyWeChat",
  1355. "support": {
  1356. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1357. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1358. },
  1359. "time": "2021-07-05T04:03:22+00:00"
  1360. },
  1361. {
  1362. "name": "egulias/email-validator",
  1363. "version": "2.1.25",
  1364. "source": {
  1365. "type": "git",
  1366. "url": "https://github.com/egulias/EmailValidator.git",
  1367. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1368. },
  1369. "dist": {
  1370. "type": "zip",
  1371. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1372. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1373. "shasum": "",
  1374. "mirrors": [
  1375. {
  1376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1377. "preferred": true
  1378. }
  1379. ]
  1380. },
  1381. "require": {
  1382. "doctrine/lexer": "^1.0.1",
  1383. "php": ">=5.5",
  1384. "symfony/polyfill-intl-idn": "^1.10"
  1385. },
  1386. "require-dev": {
  1387. "dominicsayers/isemail": "^3.0.7",
  1388. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1389. "satooshi/php-coveralls": "^1.0.1"
  1390. },
  1391. "suggest": {
  1392. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1393. },
  1394. "type": "library",
  1395. "extra": {
  1396. "branch-alias": {
  1397. "dev-master": "2.1.x-dev"
  1398. }
  1399. },
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Egulias\\EmailValidator\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Eduardo Gulias Davis"
  1412. }
  1413. ],
  1414. "description": "A library for validating emails against several RFCs",
  1415. "homepage": "https://github.com/egulias/EmailValidator",
  1416. "keywords": [
  1417. "email",
  1418. "emailvalidation",
  1419. "emailvalidator",
  1420. "validation",
  1421. "validator"
  1422. ],
  1423. "time": "2020-12-29T14:50:06+00:00"
  1424. },
  1425. {
  1426. "name": "fideloper/proxy",
  1427. "version": "4.4.1",
  1428. "source": {
  1429. "type": "git",
  1430. "url": "https://github.com/fideloper/TrustedProxy.git",
  1431. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1432. },
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1436. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  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. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1447. "php": ">=5.4.0"
  1448. },
  1449. "require-dev": {
  1450. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1451. "mockery/mockery": "^1.0",
  1452. "phpunit/phpunit": "^6.0"
  1453. },
  1454. "type": "library",
  1455. "extra": {
  1456. "laravel": {
  1457. "providers": [
  1458. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1459. ]
  1460. }
  1461. },
  1462. "autoload": {
  1463. "psr-4": {
  1464. "Fideloper\\Proxy\\": "src/"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "MIT"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Chris Fidao",
  1474. "email": "fideloper@gmail.com"
  1475. }
  1476. ],
  1477. "description": "Set trusted proxies for Laravel",
  1478. "keywords": [
  1479. "load balancing",
  1480. "proxy",
  1481. "trusted proxy"
  1482. ],
  1483. "time": "2020-10-22T13:48:01+00:00"
  1484. },
  1485. {
  1486. "name": "fruitcake/laravel-cors",
  1487. "version": "v2.0.4",
  1488. "source": {
  1489. "type": "git",
  1490. "url": "https://github.com/fruitcake/laravel-cors.git",
  1491. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  1492. },
  1493. "dist": {
  1494. "type": "zip",
  1495. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1496. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1497. "shasum": "",
  1498. "mirrors": [
  1499. {
  1500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1501. "preferred": true
  1502. }
  1503. ]
  1504. },
  1505. "require": {
  1506. "asm89/stack-cors": "^2.0.1",
  1507. "illuminate/contracts": "^6|^7|^8|^9",
  1508. "illuminate/support": "^6|^7|^8|^9",
  1509. "php": ">=7.2",
  1510. "symfony/http-foundation": "^4|^5",
  1511. "symfony/http-kernel": "^4.3.4|^5"
  1512. },
  1513. "require-dev": {
  1514. "laravel/framework": "^6|^7|^8",
  1515. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1516. "phpunit/phpunit": "^6|^7|^8|^9",
  1517. "squizlabs/php_codesniffer": "^3.5"
  1518. },
  1519. "type": "library",
  1520. "extra": {
  1521. "branch-alias": {
  1522. "dev-master": "2.0-dev"
  1523. },
  1524. "laravel": {
  1525. "providers": [
  1526. "Fruitcake\\Cors\\CorsServiceProvider"
  1527. ]
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "Fruitcake\\Cors\\": "src/"
  1533. }
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Fruitcake",
  1542. "homepage": "https://fruitcake.nl"
  1543. },
  1544. {
  1545. "name": "Barry vd. Heuvel",
  1546. "email": "barryvdh@gmail.com"
  1547. }
  1548. ],
  1549. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1550. "keywords": [
  1551. "api",
  1552. "cors",
  1553. "crossdomain",
  1554. "laravel"
  1555. ],
  1556. "time": "2021-04-26T11:24:25+00:00"
  1557. },
  1558. {
  1559. "name": "graham-campbell/result-type",
  1560. "version": "v1.0.1",
  1561. "source": {
  1562. "type": "git",
  1563. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1564. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  1565. },
  1566. "dist": {
  1567. "type": "zip",
  1568. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  1569. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  1570. "shasum": "",
  1571. "mirrors": [
  1572. {
  1573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1574. "preferred": true
  1575. }
  1576. ]
  1577. },
  1578. "require": {
  1579. "php": "^7.0|^8.0",
  1580. "phpoption/phpoption": "^1.7.3"
  1581. },
  1582. "require-dev": {
  1583. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  1584. },
  1585. "type": "library",
  1586. "extra": {
  1587. "branch-alias": {
  1588. "dev-master": "1.0-dev"
  1589. }
  1590. },
  1591. "autoload": {
  1592. "psr-4": {
  1593. "GrahamCampbell\\ResultType\\": "src/"
  1594. }
  1595. },
  1596. "notification-url": "https://packagist.org/downloads/",
  1597. "license": [
  1598. "MIT"
  1599. ],
  1600. "authors": [
  1601. {
  1602. "name": "Graham Campbell",
  1603. "email": "graham@alt-three.com"
  1604. }
  1605. ],
  1606. "description": "An Implementation Of The Result Type",
  1607. "keywords": [
  1608. "Graham Campbell",
  1609. "GrahamCampbell",
  1610. "Result Type",
  1611. "Result-Type",
  1612. "result"
  1613. ],
  1614. "time": "2020-04-13T13:17:36+00:00"
  1615. },
  1616. {
  1617. "name": "guzzlehttp/guzzle",
  1618. "version": "7.3.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/guzzle/guzzle.git",
  1622. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  1627. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  1628. "shasum": "",
  1629. "mirrors": [
  1630. {
  1631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1632. "preferred": true
  1633. }
  1634. ]
  1635. },
  1636. "require": {
  1637. "ext-json": "*",
  1638. "guzzlehttp/promises": "^1.4",
  1639. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1640. "php": "^7.2.5 || ^8.0",
  1641. "psr/http-client": "^1.0"
  1642. },
  1643. "provide": {
  1644. "psr/http-client-implementation": "1.0"
  1645. },
  1646. "require-dev": {
  1647. "bamarni/composer-bin-plugin": "^1.4.1",
  1648. "ext-curl": "*",
  1649. "php-http/client-integration-tests": "^3.0",
  1650. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1651. "psr/log": "^1.1"
  1652. },
  1653. "suggest": {
  1654. "ext-curl": "Required for CURL handler support",
  1655. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1656. "psr/log": "Required for using the Log middleware"
  1657. },
  1658. "type": "library",
  1659. "extra": {
  1660. "branch-alias": {
  1661. "dev-master": "7.3-dev"
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-4": {
  1666. "GuzzleHttp\\": "src/"
  1667. },
  1668. "files": [
  1669. "src/functions_include.php"
  1670. ]
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "Michael Dowling",
  1679. "email": "mtdowling@gmail.com",
  1680. "homepage": "https://github.com/mtdowling"
  1681. },
  1682. {
  1683. "name": "Márk Sági-Kazár",
  1684. "email": "mark.sagikazar@gmail.com",
  1685. "homepage": "https://sagikazarmark.hu"
  1686. }
  1687. ],
  1688. "description": "Guzzle is a PHP HTTP client library",
  1689. "homepage": "http://guzzlephp.org/",
  1690. "keywords": [
  1691. "client",
  1692. "curl",
  1693. "framework",
  1694. "http",
  1695. "http client",
  1696. "psr-18",
  1697. "psr-7",
  1698. "rest",
  1699. "web service"
  1700. ],
  1701. "time": "2021-03-23T11:33:13+00:00"
  1702. },
  1703. {
  1704. "name": "guzzlehttp/promises",
  1705. "version": "1.4.1",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/guzzle/promises.git",
  1709. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1714. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1715. "shasum": "",
  1716. "mirrors": [
  1717. {
  1718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1719. "preferred": true
  1720. }
  1721. ]
  1722. },
  1723. "require": {
  1724. "php": ">=5.5"
  1725. },
  1726. "require-dev": {
  1727. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1728. },
  1729. "type": "library",
  1730. "extra": {
  1731. "branch-alias": {
  1732. "dev-master": "1.4-dev"
  1733. }
  1734. },
  1735. "autoload": {
  1736. "psr-4": {
  1737. "GuzzleHttp\\Promise\\": "src/"
  1738. },
  1739. "files": [
  1740. "src/functions_include.php"
  1741. ]
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Michael Dowling",
  1750. "email": "mtdowling@gmail.com",
  1751. "homepage": "https://github.com/mtdowling"
  1752. }
  1753. ],
  1754. "description": "Guzzle promises library",
  1755. "keywords": [
  1756. "promise"
  1757. ],
  1758. "time": "2021-03-07T09:25:29+00:00"
  1759. },
  1760. {
  1761. "name": "guzzlehttp/psr7",
  1762. "version": "2.0.0",
  1763. "source": {
  1764. "type": "git",
  1765. "url": "https://github.com/guzzle/psr7.git",
  1766. "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7"
  1767. },
  1768. "dist": {
  1769. "type": "zip",
  1770. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1dc8d9cba3897165e16d12bb13d813afb1eb3fe7",
  1771. "reference": "1dc8d9cba3897165e16d12bb13d813afb1eb3fe7",
  1772. "shasum": "",
  1773. "mirrors": [
  1774. {
  1775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1776. "preferred": true
  1777. }
  1778. ]
  1779. },
  1780. "require": {
  1781. "php": "^7.2.5 || ^8.0",
  1782. "psr/http-factory": "^1.0",
  1783. "psr/http-message": "^1.0",
  1784. "ralouphie/getallheaders": "^3.0"
  1785. },
  1786. "provide": {
  1787. "psr/http-factory-implementation": "1.0",
  1788. "psr/http-message-implementation": "1.0"
  1789. },
  1790. "require-dev": {
  1791. "bamarni/composer-bin-plugin": "^1.4.1",
  1792. "http-interop/http-factory-tests": "^0.9",
  1793. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1794. },
  1795. "suggest": {
  1796. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "2.0-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-4": {
  1806. "GuzzleHttp\\Psr7\\": "src/"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Michael Dowling",
  1816. "email": "mtdowling@gmail.com",
  1817. "homepage": "https://github.com/mtdowling"
  1818. },
  1819. {
  1820. "name": "Tobias Schultze",
  1821. "homepage": "https://github.com/Tobion"
  1822. },
  1823. {
  1824. "name": "Márk Sági-Kazár",
  1825. "email": "mark.sagikazar@gmail.com",
  1826. "homepage": "https://sagikazarmark.hu"
  1827. }
  1828. ],
  1829. "description": "PSR-7 message implementation that also provides common utility methods",
  1830. "keywords": [
  1831. "http",
  1832. "message",
  1833. "psr-7",
  1834. "request",
  1835. "response",
  1836. "stream",
  1837. "uri",
  1838. "url"
  1839. ],
  1840. "time": "2021-06-30T20:03:07+00:00"
  1841. },
  1842. {
  1843. "name": "laravel/framework",
  1844. "version": "v8.53.1",
  1845. "source": {
  1846. "type": "git",
  1847. "url": "https://github.com/laravel/framework.git",
  1848. "reference": "5df423c2790f32b26baee90518bb659572aa404f"
  1849. },
  1850. "dist": {
  1851. "type": "zip",
  1852. "url": "https://api.github.com/repos/laravel/framework/zipball/5df423c2790f32b26baee90518bb659572aa404f",
  1853. "reference": "5df423c2790f32b26baee90518bb659572aa404f",
  1854. "shasum": "",
  1855. "mirrors": [
  1856. {
  1857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1858. "preferred": true
  1859. }
  1860. ]
  1861. },
  1862. "require": {
  1863. "doctrine/inflector": "^1.4|^2.0",
  1864. "dragonmantank/cron-expression": "^3.0.2",
  1865. "egulias/email-validator": "^2.1.10",
  1866. "ext-json": "*",
  1867. "ext-mbstring": "*",
  1868. "ext-openssl": "*",
  1869. "league/commonmark": "^1.3|^2.0",
  1870. "league/flysystem": "^1.1",
  1871. "monolog/monolog": "^2.0",
  1872. "nesbot/carbon": "^2.31",
  1873. "opis/closure": "^3.6",
  1874. "php": "^7.3|^8.0",
  1875. "psr/container": "^1.0",
  1876. "psr/simple-cache": "^1.0",
  1877. "ramsey/uuid": "^4.0",
  1878. "swiftmailer/swiftmailer": "^6.0",
  1879. "symfony/console": "^5.1.4",
  1880. "symfony/error-handler": "^5.1.4",
  1881. "symfony/finder": "^5.1.4",
  1882. "symfony/http-foundation": "^5.1.4",
  1883. "symfony/http-kernel": "^5.1.4",
  1884. "symfony/mime": "^5.1.4",
  1885. "symfony/process": "^5.1.4",
  1886. "symfony/routing": "^5.1.4",
  1887. "symfony/var-dumper": "^5.1.4",
  1888. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1889. "vlucas/phpdotenv": "^5.2",
  1890. "voku/portable-ascii": "^1.4.8"
  1891. },
  1892. "conflict": {
  1893. "tightenco/collect": "<5.5.33"
  1894. },
  1895. "provide": {
  1896. "psr/container-implementation": "1.0"
  1897. },
  1898. "replace": {
  1899. "illuminate/auth": "self.version",
  1900. "illuminate/broadcasting": "self.version",
  1901. "illuminate/bus": "self.version",
  1902. "illuminate/cache": "self.version",
  1903. "illuminate/collections": "self.version",
  1904. "illuminate/config": "self.version",
  1905. "illuminate/console": "self.version",
  1906. "illuminate/container": "self.version",
  1907. "illuminate/contracts": "self.version",
  1908. "illuminate/cookie": "self.version",
  1909. "illuminate/database": "self.version",
  1910. "illuminate/encryption": "self.version",
  1911. "illuminate/events": "self.version",
  1912. "illuminate/filesystem": "self.version",
  1913. "illuminate/hashing": "self.version",
  1914. "illuminate/http": "self.version",
  1915. "illuminate/log": "self.version",
  1916. "illuminate/macroable": "self.version",
  1917. "illuminate/mail": "self.version",
  1918. "illuminate/notifications": "self.version",
  1919. "illuminate/pagination": "self.version",
  1920. "illuminate/pipeline": "self.version",
  1921. "illuminate/queue": "self.version",
  1922. "illuminate/redis": "self.version",
  1923. "illuminate/routing": "self.version",
  1924. "illuminate/session": "self.version",
  1925. "illuminate/support": "self.version",
  1926. "illuminate/testing": "self.version",
  1927. "illuminate/translation": "self.version",
  1928. "illuminate/validation": "self.version",
  1929. "illuminate/view": "self.version"
  1930. },
  1931. "require-dev": {
  1932. "aws/aws-sdk-php": "^3.186.4",
  1933. "doctrine/dbal": "^2.6|^3.0",
  1934. "filp/whoops": "^2.8",
  1935. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1936. "league/flysystem-cached-adapter": "^1.0",
  1937. "mockery/mockery": "^1.4.2",
  1938. "orchestra/testbench-core": "^6.23",
  1939. "pda/pheanstalk": "^4.0",
  1940. "phpunit/phpunit": "^8.5.8|^9.3.3",
  1941. "predis/predis": "^1.1.2",
  1942. "symfony/cache": "^5.1.4"
  1943. },
  1944. "suggest": {
  1945. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.186.4).",
  1946. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1947. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  1948. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1949. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1950. "ext-memcached": "Required to use the memcache cache driver.",
  1951. "ext-pcntl": "Required to use all features of the queue worker.",
  1952. "ext-posix": "Required to use all features of the queue worker.",
  1953. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1954. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1955. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  1956. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1957. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1958. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1959. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1960. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1961. "mockery/mockery": "Required to use mocking (^1.4.2).",
  1962. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1963. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1964. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  1965. "predis/predis": "Required to use the predis connector (^1.1.2).",
  1966. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1967. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0).",
  1968. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  1969. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  1970. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1971. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "8.x-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "files": [
  1981. "src/Illuminate/Collections/helpers.php",
  1982. "src/Illuminate/Events/functions.php",
  1983. "src/Illuminate/Foundation/helpers.php",
  1984. "src/Illuminate/Support/helpers.php"
  1985. ],
  1986. "psr-4": {
  1987. "Illuminate\\": "src/Illuminate/",
  1988. "Illuminate\\Support\\": [
  1989. "src/Illuminate/Macroable/",
  1990. "src/Illuminate/Collections/"
  1991. ]
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "MIT"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Taylor Otwell",
  2001. "email": "taylor@laravel.com"
  2002. }
  2003. ],
  2004. "description": "The Laravel Framework.",
  2005. "homepage": "https://laravel.com",
  2006. "keywords": [
  2007. "framework",
  2008. "laravel"
  2009. ],
  2010. "time": "2021-08-05T14:04:08+00:00"
  2011. },
  2012. {
  2013. "name": "laravel/tinker",
  2014. "version": "v2.6.1",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/laravel/tinker.git",
  2018. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2023. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2024. "shasum": "",
  2025. "mirrors": [
  2026. {
  2027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2028. "preferred": true
  2029. }
  2030. ]
  2031. },
  2032. "require": {
  2033. "illuminate/console": "^6.0|^7.0|^8.0",
  2034. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2035. "illuminate/support": "^6.0|^7.0|^8.0",
  2036. "php": "^7.2.5|^8.0",
  2037. "psy/psysh": "^0.10.4",
  2038. "symfony/var-dumper": "^4.3.4|^5.0"
  2039. },
  2040. "require-dev": {
  2041. "mockery/mockery": "~1.3.3|^1.4.2",
  2042. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2043. },
  2044. "suggest": {
  2045. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-master": "2.x-dev"
  2051. },
  2052. "laravel": {
  2053. "providers": [
  2054. "Laravel\\Tinker\\TinkerServiceProvider"
  2055. ]
  2056. }
  2057. },
  2058. "autoload": {
  2059. "psr-4": {
  2060. "Laravel\\Tinker\\": "src/"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Taylor Otwell",
  2070. "email": "taylor@laravel.com"
  2071. }
  2072. ],
  2073. "description": "Powerful REPL for the Laravel framework.",
  2074. "keywords": [
  2075. "REPL",
  2076. "Tinker",
  2077. "laravel",
  2078. "psysh"
  2079. ],
  2080. "time": "2021-03-02T16:53:12+00:00"
  2081. },
  2082. {
  2083. "name": "lcobucci/jwt",
  2084. "version": "3.3.3",
  2085. "source": {
  2086. "type": "git",
  2087. "url": "https://github.com/lcobucci/jwt.git",
  2088. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2089. },
  2090. "dist": {
  2091. "type": "zip",
  2092. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2093. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2094. "shasum": "",
  2095. "mirrors": [
  2096. {
  2097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2098. "preferred": true
  2099. }
  2100. ]
  2101. },
  2102. "require": {
  2103. "ext-mbstring": "*",
  2104. "ext-openssl": "*",
  2105. "php": "^5.6 || ^7.0"
  2106. },
  2107. "require-dev": {
  2108. "mikey179/vfsstream": "~1.5",
  2109. "phpmd/phpmd": "~2.2",
  2110. "phpunit/php-invoker": "~1.1",
  2111. "phpunit/phpunit": "^5.7 || ^7.3",
  2112. "squizlabs/php_codesniffer": "~2.3"
  2113. },
  2114. "type": "library",
  2115. "extra": {
  2116. "branch-alias": {
  2117. "dev-master": "3.1-dev"
  2118. }
  2119. },
  2120. "autoload": {
  2121. "psr-4": {
  2122. "Lcobucci\\JWT\\": "src"
  2123. }
  2124. },
  2125. "notification-url": "https://packagist.org/downloads/",
  2126. "license": [
  2127. "BSD-3-Clause"
  2128. ],
  2129. "authors": [
  2130. {
  2131. "name": "Luís Otávio Cobucci Oblonczyk",
  2132. "email": "lcobucci@gmail.com",
  2133. "role": "Developer"
  2134. }
  2135. ],
  2136. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2137. "keywords": [
  2138. "JWS",
  2139. "jwt"
  2140. ],
  2141. "support": {
  2142. "issues": "https://github.com/lcobucci/jwt/issues",
  2143. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2144. },
  2145. "funding": [
  2146. {
  2147. "url": "https://github.com/lcobucci",
  2148. "type": "github"
  2149. },
  2150. {
  2151. "url": "https://www.patreon.com/lcobucci",
  2152. "type": "patreon"
  2153. }
  2154. ],
  2155. "time": "2020-08-20T13:22:28+00:00"
  2156. },
  2157. {
  2158. "name": "league/commonmark",
  2159. "version": "2.0.1",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/thephpleague/commonmark.git",
  2163. "reference": "0d57f20aa03129ee7ef5f690e634884315d4238c"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/0d57f20aa03129ee7ef5f690e634884315d4238c",
  2168. "reference": "0d57f20aa03129ee7ef5f690e634884315d4238c",
  2169. "shasum": "",
  2170. "mirrors": [
  2171. {
  2172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2173. "preferred": true
  2174. }
  2175. ]
  2176. },
  2177. "require": {
  2178. "ext-mbstring": "*",
  2179. "league/config": "^1.1",
  2180. "php": "^7.4 || ^8.0",
  2181. "psr/event-dispatcher": "^1.0",
  2182. "symfony/polyfill-php80": "^1.15"
  2183. },
  2184. "require-dev": {
  2185. "cebe/markdown": "^1.0",
  2186. "commonmark/cmark": "0.30.0",
  2187. "commonmark/commonmark.js": "0.30.0",
  2188. "composer/package-versions-deprecated": "^1.8",
  2189. "erusev/parsedown": "^1.0",
  2190. "ext-json": "*",
  2191. "github/gfm": "0.29.0",
  2192. "michelf/php-markdown": "^1.4",
  2193. "phpstan/phpstan": "^0.12.88",
  2194. "phpunit/phpunit": "^9.5.5",
  2195. "scrutinizer/ocular": "^1.8.1",
  2196. "symfony/finder": "^5.3",
  2197. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0",
  2198. "unleashedtech/php-coding-standard": "^3.1",
  2199. "vimeo/psalm": "^4.7.3"
  2200. },
  2201. "suggest": {
  2202. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-main": "2.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "League\\CommonMark\\": "src"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "BSD-3-Clause"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Colin O'Dell",
  2222. "email": "colinodell@gmail.com",
  2223. "homepage": "https://www.colinodell.com",
  2224. "role": "Lead Developer"
  2225. }
  2226. ],
  2227. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2228. "homepage": "https://commonmark.thephpleague.com",
  2229. "keywords": [
  2230. "commonmark",
  2231. "flavored",
  2232. "gfm",
  2233. "github",
  2234. "github-flavored",
  2235. "markdown",
  2236. "md",
  2237. "parser"
  2238. ],
  2239. "time": "2021-07-31T19:15:22+00:00"
  2240. },
  2241. {
  2242. "name": "league/config",
  2243. "version": "v1.1.0",
  2244. "source": {
  2245. "type": "git",
  2246. "url": "https://github.com/thephpleague/config.git",
  2247. "reference": "20d42d88f12a76ff862e17af4f14a5a4bbfd0925"
  2248. },
  2249. "dist": {
  2250. "type": "zip",
  2251. "url": "https://api.github.com/repos/thephpleague/config/zipball/20d42d88f12a76ff862e17af4f14a5a4bbfd0925",
  2252. "reference": "20d42d88f12a76ff862e17af4f14a5a4bbfd0925",
  2253. "shasum": "",
  2254. "mirrors": [
  2255. {
  2256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2257. "preferred": true
  2258. }
  2259. ]
  2260. },
  2261. "require": {
  2262. "dflydev/dot-access-data": "^3.0",
  2263. "nette/schema": "^1.2",
  2264. "php": "^7.4 || ^8.0"
  2265. },
  2266. "require-dev": {
  2267. "phpstan/phpstan": "^0.12.90",
  2268. "phpunit/phpunit": "^9.5.5",
  2269. "scrutinizer/ocular": "^1.8.1",
  2270. "unleashedtech/php-coding-standard": "^3.1",
  2271. "vimeo/psalm": "^4.7.3"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "branch-alias": {
  2276. "dev-main": "1.2-dev"
  2277. }
  2278. },
  2279. "autoload": {
  2280. "psr-4": {
  2281. "League\\Config\\": "src"
  2282. }
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "BSD-3-Clause"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Colin O'Dell",
  2291. "email": "colinodell@gmail.com",
  2292. "homepage": "https://www.colinodell.com",
  2293. "role": "Lead Developer"
  2294. }
  2295. ],
  2296. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2297. "homepage": "https://config.thephpleague.com",
  2298. "keywords": [
  2299. "array",
  2300. "config",
  2301. "configuration",
  2302. "dot",
  2303. "dot-access",
  2304. "nested",
  2305. "schema"
  2306. ],
  2307. "time": "2021-06-19T15:52:37+00:00"
  2308. },
  2309. {
  2310. "name": "league/flysystem",
  2311. "version": "1.1.4",
  2312. "source": {
  2313. "type": "git",
  2314. "url": "https://github.com/thephpleague/flysystem.git",
  2315. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  2316. },
  2317. "dist": {
  2318. "type": "zip",
  2319. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2320. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2321. "shasum": "",
  2322. "mirrors": [
  2323. {
  2324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2325. "preferred": true
  2326. }
  2327. ]
  2328. },
  2329. "require": {
  2330. "ext-fileinfo": "*",
  2331. "league/mime-type-detection": "^1.3",
  2332. "php": "^7.2.5 || ^8.0"
  2333. },
  2334. "conflict": {
  2335. "league/flysystem-sftp": "<1.0.6"
  2336. },
  2337. "require-dev": {
  2338. "phpspec/prophecy": "^1.11.1",
  2339. "phpunit/phpunit": "^8.5.8"
  2340. },
  2341. "suggest": {
  2342. "ext-ftp": "Allows you to use FTP server storage",
  2343. "ext-openssl": "Allows you to use FTPS server storage",
  2344. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2345. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2346. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2347. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2348. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2349. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2350. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2351. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2352. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2353. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2354. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2355. },
  2356. "type": "library",
  2357. "extra": {
  2358. "branch-alias": {
  2359. "dev-master": "1.1-dev"
  2360. }
  2361. },
  2362. "autoload": {
  2363. "psr-4": {
  2364. "League\\Flysystem\\": "src/"
  2365. }
  2366. },
  2367. "notification-url": "https://packagist.org/downloads/",
  2368. "license": [
  2369. "MIT"
  2370. ],
  2371. "authors": [
  2372. {
  2373. "name": "Frank de Jonge",
  2374. "email": "info@frenky.net"
  2375. }
  2376. ],
  2377. "description": "Filesystem abstraction: Many filesystems, one API.",
  2378. "keywords": [
  2379. "Cloud Files",
  2380. "WebDAV",
  2381. "abstraction",
  2382. "aws",
  2383. "cloud",
  2384. "copy.com",
  2385. "dropbox",
  2386. "file systems",
  2387. "files",
  2388. "filesystem",
  2389. "filesystems",
  2390. "ftp",
  2391. "rackspace",
  2392. "remote",
  2393. "s3",
  2394. "sftp",
  2395. "storage"
  2396. ],
  2397. "time": "2021-06-23T21:56:05+00:00"
  2398. },
  2399. {
  2400. "name": "league/fractal",
  2401. "version": "0.19.2",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://github.com/thephpleague/fractal.git",
  2405. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2410. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2411. "shasum": "",
  2412. "mirrors": [
  2413. {
  2414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2415. "preferred": true
  2416. }
  2417. ]
  2418. },
  2419. "require": {
  2420. "php": ">=5.4"
  2421. },
  2422. "require-dev": {
  2423. "doctrine/orm": "^2.5",
  2424. "illuminate/contracts": "~5.0",
  2425. "mockery/mockery": "~0.9",
  2426. "pagerfanta/pagerfanta": "~1.0.0",
  2427. "phpunit/phpunit": "^4.8.35 || ^7.5",
  2428. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  2429. "zendframework/zend-paginator": "~2.3"
  2430. },
  2431. "suggest": {
  2432. "illuminate/pagination": "The Illuminate Pagination component.",
  2433. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  2434. "zendframework/zend-paginator": "Zend Framework Paginator"
  2435. },
  2436. "type": "library",
  2437. "extra": {
  2438. "branch-alias": {
  2439. "dev-master": "0.13-dev"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "League\\Fractal\\": "src"
  2445. }
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "authors": [
  2452. {
  2453. "name": "Phil Sturgeon",
  2454. "email": "me@philsturgeon.uk",
  2455. "homepage": "http://philsturgeon.uk/",
  2456. "role": "Developer"
  2457. }
  2458. ],
  2459. "description": "Handle the output of complex data structures ready for API output.",
  2460. "homepage": "http://fractal.thephpleague.com/",
  2461. "keywords": [
  2462. "api",
  2463. "json",
  2464. "league",
  2465. "rest"
  2466. ],
  2467. "support": {
  2468. "issues": "https://github.com/thephpleague/fractal/issues",
  2469. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  2470. },
  2471. "time": "2020-01-24T23:17:29+00:00"
  2472. },
  2473. {
  2474. "name": "league/mime-type-detection",
  2475. "version": "1.7.0",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2479. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2484. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  2485. "shasum": "",
  2486. "mirrors": [
  2487. {
  2488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2489. "preferred": true
  2490. }
  2491. ]
  2492. },
  2493. "require": {
  2494. "ext-fileinfo": "*",
  2495. "php": "^7.2 || ^8.0"
  2496. },
  2497. "require-dev": {
  2498. "friendsofphp/php-cs-fixer": "^2.18",
  2499. "phpstan/phpstan": "^0.12.68",
  2500. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2501. },
  2502. "type": "library",
  2503. "autoload": {
  2504. "psr-4": {
  2505. "League\\MimeTypeDetection\\": "src"
  2506. }
  2507. },
  2508. "notification-url": "https://packagist.org/downloads/",
  2509. "license": [
  2510. "MIT"
  2511. ],
  2512. "authors": [
  2513. {
  2514. "name": "Frank de Jonge",
  2515. "email": "info@frankdejonge.nl"
  2516. }
  2517. ],
  2518. "description": "Mime-type detection for Flysystem",
  2519. "time": "2021-01-18T20:58:21+00:00"
  2520. },
  2521. {
  2522. "name": "monolog/monolog",
  2523. "version": "2.3.2",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/Seldaek/monolog.git",
  2527. "reference": "71312564759a7db5b789296369c1a264efc43aad"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad",
  2532. "reference": "71312564759a7db5b789296369c1a264efc43aad",
  2533. "shasum": "",
  2534. "mirrors": [
  2535. {
  2536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2537. "preferred": true
  2538. }
  2539. ]
  2540. },
  2541. "require": {
  2542. "php": ">=7.2",
  2543. "psr/log": "^1.0.1"
  2544. },
  2545. "provide": {
  2546. "psr/log-implementation": "1.0.0"
  2547. },
  2548. "require-dev": {
  2549. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2550. "doctrine/couchdb": "~1.0@dev",
  2551. "elasticsearch/elasticsearch": "^7",
  2552. "graylog2/gelf-php": "^1.4.2",
  2553. "mongodb/mongodb": "^1.8",
  2554. "php-amqplib/php-amqplib": "~2.4",
  2555. "php-console/php-console": "^3.1.3",
  2556. "phpspec/prophecy": "^1.6.1",
  2557. "phpstan/phpstan": "^0.12.91",
  2558. "phpunit/phpunit": "^8.5",
  2559. "predis/predis": "^1.1",
  2560. "rollbar/rollbar": "^1.3",
  2561. "ruflin/elastica": ">=0.90 <7.0.1",
  2562. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2563. },
  2564. "suggest": {
  2565. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2566. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2567. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2568. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2569. "ext-mbstring": "Allow to work properly with unicode symbols",
  2570. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2571. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2572. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2573. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2574. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2575. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2576. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2577. },
  2578. "type": "library",
  2579. "extra": {
  2580. "branch-alias": {
  2581. "dev-main": "2.x-dev"
  2582. }
  2583. },
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Monolog\\": "src/Monolog"
  2587. }
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Jordi Boggiano",
  2596. "email": "j.boggiano@seld.be",
  2597. "homepage": "https://seld.be"
  2598. }
  2599. ],
  2600. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2601. "homepage": "https://github.com/Seldaek/monolog",
  2602. "keywords": [
  2603. "log",
  2604. "logging",
  2605. "psr-3"
  2606. ],
  2607. "time": "2021-07-23T07:42:52+00:00"
  2608. },
  2609. {
  2610. "name": "namshi/jose",
  2611. "version": "7.2.3",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/namshi/jose.git",
  2615. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  2620. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  2621. "shasum": "",
  2622. "mirrors": [
  2623. {
  2624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2625. "preferred": true
  2626. }
  2627. ]
  2628. },
  2629. "require": {
  2630. "ext-date": "*",
  2631. "ext-hash": "*",
  2632. "ext-json": "*",
  2633. "ext-pcre": "*",
  2634. "ext-spl": "*",
  2635. "php": ">=5.5",
  2636. "symfony/polyfill-php56": "^1.0"
  2637. },
  2638. "require-dev": {
  2639. "phpseclib/phpseclib": "^2.0",
  2640. "phpunit/phpunit": "^4.5|^5.0",
  2641. "satooshi/php-coveralls": "^1.0"
  2642. },
  2643. "suggest": {
  2644. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  2645. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  2646. },
  2647. "type": "library",
  2648. "autoload": {
  2649. "psr-4": {
  2650. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Alessandro Nadalin",
  2660. "email": "alessandro.nadalin@gmail.com"
  2661. },
  2662. {
  2663. "name": "Alessandro Cinelli (cirpo)",
  2664. "email": "alessandro.cinelli@gmail.com"
  2665. }
  2666. ],
  2667. "description": "JSON Object Signing and Encryption library for PHP.",
  2668. "keywords": [
  2669. "JSON Web Signature",
  2670. "JSON Web Token",
  2671. "JWS",
  2672. "json",
  2673. "jwt",
  2674. "token"
  2675. ],
  2676. "support": {
  2677. "issues": "https://github.com/namshi/jose/issues",
  2678. "source": "https://github.com/namshi/jose/tree/master"
  2679. },
  2680. "time": "2016-12-05T07:27:31+00:00"
  2681. },
  2682. {
  2683. "name": "nesbot/carbon",
  2684. "version": "2.51.1",
  2685. "source": {
  2686. "type": "git",
  2687. "url": "https://github.com/briannesbitt/Carbon.git",
  2688. "reference": "8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922"
  2689. },
  2690. "dist": {
  2691. "type": "zip",
  2692. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922",
  2693. "reference": "8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922",
  2694. "shasum": "",
  2695. "mirrors": [
  2696. {
  2697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2698. "preferred": true
  2699. }
  2700. ]
  2701. },
  2702. "require": {
  2703. "ext-json": "*",
  2704. "php": "^7.1.8 || ^8.0",
  2705. "symfony/polyfill-mbstring": "^1.0",
  2706. "symfony/polyfill-php80": "^1.16",
  2707. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  2708. },
  2709. "require-dev": {
  2710. "doctrine/orm": "^2.7",
  2711. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  2712. "kylekatarnls/multi-tester": "^2.0",
  2713. "phpmd/phpmd": "^2.9",
  2714. "phpstan/extension-installer": "^1.0",
  2715. "phpstan/phpstan": "^0.12.54",
  2716. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  2717. "squizlabs/php_codesniffer": "^3.4"
  2718. },
  2719. "bin": [
  2720. "bin/carbon"
  2721. ],
  2722. "type": "library",
  2723. "extra": {
  2724. "branch-alias": {
  2725. "dev-3.x": "3.x-dev",
  2726. "dev-master": "2.x-dev"
  2727. },
  2728. "laravel": {
  2729. "providers": [
  2730. "Carbon\\Laravel\\ServiceProvider"
  2731. ]
  2732. },
  2733. "phpstan": {
  2734. "includes": [
  2735. "extension.neon"
  2736. ]
  2737. }
  2738. },
  2739. "autoload": {
  2740. "psr-4": {
  2741. "Carbon\\": "src/Carbon/"
  2742. }
  2743. },
  2744. "notification-url": "https://packagist.org/downloads/",
  2745. "license": [
  2746. "MIT"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "Brian Nesbitt",
  2751. "email": "brian@nesbot.com",
  2752. "homepage": "https://markido.com"
  2753. },
  2754. {
  2755. "name": "kylekatarnls",
  2756. "homepage": "https://github.com/kylekatarnls"
  2757. }
  2758. ],
  2759. "description": "An API extension for DateTime that supports 281 different languages.",
  2760. "homepage": "https://carbon.nesbot.com",
  2761. "keywords": [
  2762. "date",
  2763. "datetime",
  2764. "time"
  2765. ],
  2766. "time": "2021-07-28T13:16:28+00:00"
  2767. },
  2768. {
  2769. "name": "nette/schema",
  2770. "version": "v1.2.1",
  2771. "source": {
  2772. "type": "git",
  2773. "url": "https://github.com/nette/schema.git",
  2774. "reference": "f5ed39fc96358f922cedfd1e516f0dadf5d2be0d"
  2775. },
  2776. "dist": {
  2777. "type": "zip",
  2778. "url": "https://api.github.com/repos/nette/schema/zipball/f5ed39fc96358f922cedfd1e516f0dadf5d2be0d",
  2779. "reference": "f5ed39fc96358f922cedfd1e516f0dadf5d2be0d",
  2780. "shasum": "",
  2781. "mirrors": [
  2782. {
  2783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2784. "preferred": true
  2785. }
  2786. ]
  2787. },
  2788. "require": {
  2789. "nette/utils": "^3.1.4 || ^4.0",
  2790. "php": ">=7.1 <8.1"
  2791. },
  2792. "require-dev": {
  2793. "nette/tester": "^2.3 || ^2.4",
  2794. "phpstan/phpstan-nette": "^0.12",
  2795. "tracy/tracy": "^2.7"
  2796. },
  2797. "type": "library",
  2798. "extra": {
  2799. "branch-alias": {
  2800. "dev-master": "1.2-dev"
  2801. }
  2802. },
  2803. "autoload": {
  2804. "classmap": [
  2805. "src/"
  2806. ]
  2807. },
  2808. "notification-url": "https://packagist.org/downloads/",
  2809. "license": [
  2810. "BSD-3-Clause",
  2811. "GPL-2.0-only",
  2812. "GPL-3.0-only"
  2813. ],
  2814. "authors": [
  2815. {
  2816. "name": "David Grudl",
  2817. "homepage": "https://davidgrudl.com"
  2818. },
  2819. {
  2820. "name": "Nette Community",
  2821. "homepage": "https://nette.org/contributors"
  2822. }
  2823. ],
  2824. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2825. "homepage": "https://nette.org",
  2826. "keywords": [
  2827. "config",
  2828. "nette"
  2829. ],
  2830. "time": "2021-03-04T17:51:11+00:00"
  2831. },
  2832. {
  2833. "name": "nette/utils",
  2834. "version": "v3.2.2",
  2835. "source": {
  2836. "type": "git",
  2837. "url": "https://github.com/nette/utils.git",
  2838. "reference": "967cfc4f9a1acd5f1058d76715a424c53343c20c"
  2839. },
  2840. "dist": {
  2841. "type": "zip",
  2842. "url": "https://api.github.com/repos/nette/utils/zipball/967cfc4f9a1acd5f1058d76715a424c53343c20c",
  2843. "reference": "967cfc4f9a1acd5f1058d76715a424c53343c20c",
  2844. "shasum": "",
  2845. "mirrors": [
  2846. {
  2847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2848. "preferred": true
  2849. }
  2850. ]
  2851. },
  2852. "require": {
  2853. "php": ">=7.2 <8.1"
  2854. },
  2855. "conflict": {
  2856. "nette/di": "<3.0.6"
  2857. },
  2858. "require-dev": {
  2859. "nette/tester": "~2.0",
  2860. "phpstan/phpstan": "^0.12",
  2861. "tracy/tracy": "^2.3"
  2862. },
  2863. "suggest": {
  2864. "ext-gd": "to use Image",
  2865. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2866. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2867. "ext-json": "to use Nette\\Utils\\Json",
  2868. "ext-mbstring": "to use Strings::lower() etc...",
  2869. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2870. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "3.2-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "classmap": [
  2880. "src/"
  2881. ]
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "BSD-3-Clause",
  2886. "GPL-2.0-only",
  2887. "GPL-3.0-only"
  2888. ],
  2889. "authors": [
  2890. {
  2891. "name": "David Grudl",
  2892. "homepage": "https://davidgrudl.com"
  2893. },
  2894. {
  2895. "name": "Nette Community",
  2896. "homepage": "https://nette.org/contributors"
  2897. }
  2898. ],
  2899. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2900. "homepage": "https://nette.org",
  2901. "keywords": [
  2902. "array",
  2903. "core",
  2904. "datetime",
  2905. "images",
  2906. "json",
  2907. "nette",
  2908. "paginator",
  2909. "password",
  2910. "slugify",
  2911. "string",
  2912. "unicode",
  2913. "utf-8",
  2914. "utility",
  2915. "validation"
  2916. ],
  2917. "time": "2021-03-03T22:53:25+00:00"
  2918. },
  2919. {
  2920. "name": "nikic/php-parser",
  2921. "version": "v4.12.0",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/nikic/PHP-Parser.git",
  2925. "reference": "6608f01670c3cc5079e18c1dab1104e002579143"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143",
  2930. "reference": "6608f01670c3cc5079e18c1dab1104e002579143",
  2931. "shasum": "",
  2932. "mirrors": [
  2933. {
  2934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2935. "preferred": true
  2936. }
  2937. ]
  2938. },
  2939. "require": {
  2940. "ext-tokenizer": "*",
  2941. "php": ">=7.0"
  2942. },
  2943. "require-dev": {
  2944. "ircmaxell/php-yacc": "^0.0.7",
  2945. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2946. },
  2947. "bin": [
  2948. "bin/php-parse"
  2949. ],
  2950. "type": "library",
  2951. "extra": {
  2952. "branch-alias": {
  2953. "dev-master": "4.9-dev"
  2954. }
  2955. },
  2956. "autoload": {
  2957. "psr-4": {
  2958. "PhpParser\\": "lib/PhpParser"
  2959. }
  2960. },
  2961. "notification-url": "https://packagist.org/downloads/",
  2962. "license": [
  2963. "BSD-3-Clause"
  2964. ],
  2965. "authors": [
  2966. {
  2967. "name": "Nikita Popov"
  2968. }
  2969. ],
  2970. "description": "A PHP parser written in PHP",
  2971. "keywords": [
  2972. "parser",
  2973. "php"
  2974. ],
  2975. "time": "2021-07-21T10:44:31+00:00"
  2976. },
  2977. {
  2978. "name": "opis/closure",
  2979. "version": "3.6.2",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/opis/closure.git",
  2983. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  2988. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "php": "^5.4 || ^7.0 || ^8.0"
  2999. },
  3000. "require-dev": {
  3001. "jeremeamia/superclosure": "^2.0",
  3002. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3003. },
  3004. "type": "library",
  3005. "extra": {
  3006. "branch-alias": {
  3007. "dev-master": "3.6.x-dev"
  3008. }
  3009. },
  3010. "autoload": {
  3011. "psr-4": {
  3012. "Opis\\Closure\\": "src/"
  3013. },
  3014. "files": [
  3015. "functions.php"
  3016. ]
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "MIT"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Marius Sarca",
  3025. "email": "marius.sarca@gmail.com"
  3026. },
  3027. {
  3028. "name": "Sorin Sarca",
  3029. "email": "sarca_sorin@hotmail.com"
  3030. }
  3031. ],
  3032. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3033. "homepage": "https://opis.io/closure",
  3034. "keywords": [
  3035. "anonymous functions",
  3036. "closure",
  3037. "function",
  3038. "serializable",
  3039. "serialization",
  3040. "serialize"
  3041. ],
  3042. "time": "2021-04-09T13:42:10+00:00"
  3043. },
  3044. {
  3045. "name": "overtrue/easy-sms",
  3046. "version": "1.3.2",
  3047. "source": {
  3048. "type": "git",
  3049. "url": "https://github.com/overtrue/easy-sms.git",
  3050. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  3051. },
  3052. "dist": {
  3053. "type": "zip",
  3054. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  3055. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  3056. "shasum": "",
  3057. "mirrors": [
  3058. {
  3059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3060. "preferred": true
  3061. }
  3062. ]
  3063. },
  3064. "require": {
  3065. "ext-json": "*",
  3066. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3067. "php": ">=5.6"
  3068. },
  3069. "require-dev": {
  3070. "mockery/mockery": "1.3.1",
  3071. "phpunit/phpunit": "^5.7 || ^7.5"
  3072. },
  3073. "type": "library",
  3074. "autoload": {
  3075. "psr-4": {
  3076. "Overtrue\\EasySms\\": "src"
  3077. }
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "overtrue",
  3086. "email": "i@overtrue.me"
  3087. }
  3088. ],
  3089. "description": "The easiest way to send short message.",
  3090. "support": {
  3091. "issues": "https://github.com/overtrue/easy-sms/issues",
  3092. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  3093. },
  3094. "time": "2021-01-22T06:52:59+00:00"
  3095. },
  3096. {
  3097. "name": "overtrue/laravel-wechat",
  3098. "version": "6.0.1",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/overtrue/laravel-wechat.git",
  3102. "reference": "bdfb4b0b264204e9625a04937c0f98b9ff7722b2"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/bdfb4b0b264204e9625a04937c0f98b9ff7722b2",
  3107. "reference": "bdfb4b0b264204e9625a04937c0f98b9ff7722b2",
  3108. "shasum": "",
  3109. "mirrors": [
  3110. {
  3111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3112. "preferred": true
  3113. }
  3114. ]
  3115. },
  3116. "require": {
  3117. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  3118. "overtrue/wechat": "^5.0"
  3119. },
  3120. "require-dev": {
  3121. "friendsofphp/php-cs-fixer": "^2.16",
  3122. "laravel/framework": "^8.5"
  3123. },
  3124. "type": "library",
  3125. "extra": {
  3126. "laravel": {
  3127. "providers": [
  3128. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3129. ],
  3130. "aliases": {
  3131. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  3132. }
  3133. }
  3134. },
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Overtrue\\LaravelWeChat\\": "src/"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "overtrue",
  3147. "email": "anzhengchao@gmail.com"
  3148. }
  3149. ],
  3150. "description": "微信 SDK for Laravel",
  3151. "keywords": [
  3152. "laravel",
  3153. "sdk",
  3154. "wechat",
  3155. "weixin"
  3156. ],
  3157. "support": {
  3158. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3159. "source": "https://github.com/overtrue/laravel-wechat/tree/6.0.1"
  3160. },
  3161. "time": "2021-04-23T05:27:35+00:00"
  3162. },
  3163. {
  3164. "name": "overtrue/socialite",
  3165. "version": "3.2.3",
  3166. "source": {
  3167. "type": "git",
  3168. "url": "https://github.com/overtrue/socialite.git",
  3169. "reference": "e331d3e2eb7040a53c674590dfa475b3ae141d32"
  3170. },
  3171. "dist": {
  3172. "type": "zip",
  3173. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e331d3e2eb7040a53c674590dfa475b3ae141d32",
  3174. "reference": "e331d3e2eb7040a53c674590dfa475b3ae141d32",
  3175. "shasum": "",
  3176. "mirrors": [
  3177. {
  3178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3179. "preferred": true
  3180. }
  3181. ]
  3182. },
  3183. "require": {
  3184. "ext-json": "*",
  3185. "ext-openssl": "*",
  3186. "guzzlehttp/guzzle": "~6.0|~7.0",
  3187. "php": ">=7.4",
  3188. "symfony/http-foundation": "^5.0",
  3189. "symfony/psr-http-message-bridge": "^2.0"
  3190. },
  3191. "require-dev": {
  3192. "mockery/mockery": "~1.2",
  3193. "phpunit/phpunit": "~9.0"
  3194. },
  3195. "type": "library",
  3196. "autoload": {
  3197. "psr-4": {
  3198. "Overtrue\\Socialite\\": "src/"
  3199. }
  3200. },
  3201. "notification-url": "https://packagist.org/downloads/",
  3202. "license": [
  3203. "MIT"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "overtrue",
  3208. "email": "anzhengchao@gmail.com"
  3209. }
  3210. ],
  3211. "description": "A collection of OAuth 2 packages.",
  3212. "keywords": [
  3213. "Feishu",
  3214. "login",
  3215. "oauth",
  3216. "qcloud",
  3217. "qq",
  3218. "social",
  3219. "wechat",
  3220. "weibo"
  3221. ],
  3222. "support": {
  3223. "issues": "https://github.com/overtrue/socialite/issues",
  3224. "source": "https://github.com/overtrue/socialite/tree/3.2.3"
  3225. },
  3226. "funding": [
  3227. {
  3228. "url": "https://www.patreon.com/overtrue",
  3229. "type": "patreon"
  3230. }
  3231. ],
  3232. "time": "2021-05-27T05:04:00+00:00"
  3233. },
  3234. {
  3235. "name": "overtrue/wechat",
  3236. "version": "5.7.1",
  3237. "source": {
  3238. "type": "git",
  3239. "url": "https://github.com/w7corp/easywechat.git",
  3240. "reference": "af06e58784aaaeaadc35f984e7e38ef05197bb31"
  3241. },
  3242. "dist": {
  3243. "type": "zip",
  3244. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/af06e58784aaaeaadc35f984e7e38ef05197bb31",
  3245. "reference": "af06e58784aaaeaadc35f984e7e38ef05197bb31",
  3246. "shasum": "",
  3247. "mirrors": [
  3248. {
  3249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3250. "preferred": true
  3251. }
  3252. ]
  3253. },
  3254. "require": {
  3255. "easywechat-composer/easywechat-composer": "^1.1",
  3256. "ext-fileinfo": "*",
  3257. "ext-libxml": "*",
  3258. "ext-openssl": "*",
  3259. "ext-simplexml": "*",
  3260. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3261. "monolog/monolog": "^1.22 || ^2.0",
  3262. "overtrue/socialite": "^3.2",
  3263. "php": ">=7.4",
  3264. "pimple/pimple": "^3.0",
  3265. "psr/simple-cache": "^1.0",
  3266. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  3267. "symfony/event-dispatcher": "^4.3 || ^5.0",
  3268. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  3269. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3270. },
  3271. "require-dev": {
  3272. "brainmaestro/composer-git-hooks": "^2.7",
  3273. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  3274. "friendsofphp/php-cs-fixer": "^2.15",
  3275. "mikey179/vfsstream": "^1.6",
  3276. "mockery/mockery": "^1.2.3",
  3277. "phpstan/phpstan": "^0.12.0",
  3278. "phpunit/phpunit": "^9.3"
  3279. },
  3280. "type": "library",
  3281. "extra": {
  3282. "hooks": {
  3283. "pre-commit": [
  3284. "composer test",
  3285. "composer fix-style"
  3286. ],
  3287. "pre-push": [
  3288. "composer test",
  3289. "composer fix-style"
  3290. ]
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "EasyWeChat\\": "src/"
  3296. },
  3297. "files": [
  3298. "src/Kernel/Support/Helpers.php",
  3299. "src/Kernel/Helpers.php"
  3300. ]
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "MIT"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "overtrue",
  3309. "email": "anzhengchao@gmail.com"
  3310. }
  3311. ],
  3312. "description": "微信SDK",
  3313. "keywords": [
  3314. "easywechat",
  3315. "sdk",
  3316. "wechat",
  3317. "weixin",
  3318. "weixin-sdk"
  3319. ],
  3320. "support": {
  3321. "issues": "https://github.com/w7corp/easywechat/issues",
  3322. "source": "https://github.com/w7corp/easywechat/tree/5.7.1"
  3323. },
  3324. "funding": [
  3325. {
  3326. "url": "https://www.easywechat.com/img/pay/wechat.jpg",
  3327. "type": "custom"
  3328. },
  3329. {
  3330. "url": "https://github.com/overtrue",
  3331. "type": "github"
  3332. },
  3333. {
  3334. "url": "https://www.patreon.com/overtrue",
  3335. "type": "patreon"
  3336. }
  3337. ],
  3338. "time": "2021-07-20T06:15:59+00:00"
  3339. },
  3340. {
  3341. "name": "phpdocumentor/reflection-common",
  3342. "version": "2.2.0",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3346. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3351. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3352. "shasum": "",
  3353. "mirrors": [
  3354. {
  3355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3356. "preferred": true
  3357. }
  3358. ]
  3359. },
  3360. "require": {
  3361. "php": "^7.2 || ^8.0"
  3362. },
  3363. "type": "library",
  3364. "extra": {
  3365. "branch-alias": {
  3366. "dev-2.x": "2.x-dev"
  3367. }
  3368. },
  3369. "autoload": {
  3370. "psr-4": {
  3371. "phpDocumentor\\Reflection\\": "src/"
  3372. }
  3373. },
  3374. "notification-url": "https://packagist.org/downloads/",
  3375. "license": [
  3376. "MIT"
  3377. ],
  3378. "authors": [
  3379. {
  3380. "name": "Jaap van Otterdijk",
  3381. "email": "opensource@ijaap.nl"
  3382. }
  3383. ],
  3384. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3385. "homepage": "http://www.phpdoc.org",
  3386. "keywords": [
  3387. "FQSEN",
  3388. "phpDocumentor",
  3389. "phpdoc",
  3390. "reflection",
  3391. "static analysis"
  3392. ],
  3393. "time": "2020-06-27T09:03:43+00:00"
  3394. },
  3395. {
  3396. "name": "phpdocumentor/reflection-docblock",
  3397. "version": "5.2.2",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3401. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  3406. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  3407. "shasum": "",
  3408. "mirrors": [
  3409. {
  3410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3411. "preferred": true
  3412. }
  3413. ]
  3414. },
  3415. "require": {
  3416. "ext-filter": "*",
  3417. "php": "^7.2 || ^8.0",
  3418. "phpdocumentor/reflection-common": "^2.2",
  3419. "phpdocumentor/type-resolver": "^1.3",
  3420. "webmozart/assert": "^1.9.1"
  3421. },
  3422. "require-dev": {
  3423. "mockery/mockery": "~1.3.2"
  3424. },
  3425. "type": "library",
  3426. "extra": {
  3427. "branch-alias": {
  3428. "dev-master": "5.x-dev"
  3429. }
  3430. },
  3431. "autoload": {
  3432. "psr-4": {
  3433. "phpDocumentor\\Reflection\\": "src"
  3434. }
  3435. },
  3436. "notification-url": "https://packagist.org/downloads/",
  3437. "license": [
  3438. "MIT"
  3439. ],
  3440. "authors": [
  3441. {
  3442. "name": "Mike van Riel",
  3443. "email": "me@mikevanriel.com"
  3444. },
  3445. {
  3446. "name": "Jaap van Otterdijk",
  3447. "email": "account@ijaap.nl"
  3448. }
  3449. ],
  3450. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3451. "time": "2020-09-03T19:13:55+00:00"
  3452. },
  3453. {
  3454. "name": "phpdocumentor/type-resolver",
  3455. "version": "1.4.0",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3459. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  3464. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  3465. "shasum": "",
  3466. "mirrors": [
  3467. {
  3468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3469. "preferred": true
  3470. }
  3471. ]
  3472. },
  3473. "require": {
  3474. "php": "^7.2 || ^8.0",
  3475. "phpdocumentor/reflection-common": "^2.0"
  3476. },
  3477. "require-dev": {
  3478. "ext-tokenizer": "*"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-1.x": "1.x-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "psr-4": {
  3488. "phpDocumentor\\Reflection\\": "src"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Mike van Riel",
  3498. "email": "me@mikevanriel.com"
  3499. }
  3500. ],
  3501. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3502. "time": "2020-09-17T18:55:26+00:00"
  3503. },
  3504. {
  3505. "name": "phpoption/phpoption",
  3506. "version": "1.7.5",
  3507. "source": {
  3508. "type": "git",
  3509. "url": "https://github.com/schmittjoh/php-option.git",
  3510. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3511. },
  3512. "dist": {
  3513. "type": "zip",
  3514. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3515. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3516. "shasum": "",
  3517. "mirrors": [
  3518. {
  3519. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3520. "preferred": true
  3521. }
  3522. ]
  3523. },
  3524. "require": {
  3525. "php": "^5.5.9 || ^7.0 || ^8.0"
  3526. },
  3527. "require-dev": {
  3528. "bamarni/composer-bin-plugin": "^1.4.1",
  3529. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3530. },
  3531. "type": "library",
  3532. "extra": {
  3533. "branch-alias": {
  3534. "dev-master": "1.7-dev"
  3535. }
  3536. },
  3537. "autoload": {
  3538. "psr-4": {
  3539. "PhpOption\\": "src/PhpOption/"
  3540. }
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "Apache-2.0"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "Johannes M. Schmitt",
  3549. "email": "schmittjoh@gmail.com"
  3550. },
  3551. {
  3552. "name": "Graham Campbell",
  3553. "email": "graham@alt-three.com"
  3554. }
  3555. ],
  3556. "description": "Option Type for PHP",
  3557. "keywords": [
  3558. "language",
  3559. "option",
  3560. "php",
  3561. "type"
  3562. ],
  3563. "time": "2020-07-20T17:29:33+00:00"
  3564. },
  3565. {
  3566. "name": "pimple/pimple",
  3567. "version": "v3.4.0",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/silexphp/Pimple.git",
  3571. "reference": "86406047271859ffc13424a048541f4531f53601"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  3576. "reference": "86406047271859ffc13424a048541f4531f53601",
  3577. "shasum": "",
  3578. "mirrors": [
  3579. {
  3580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3581. "preferred": true
  3582. }
  3583. ]
  3584. },
  3585. "require": {
  3586. "php": ">=7.2.5",
  3587. "psr/container": "^1.1"
  3588. },
  3589. "require-dev": {
  3590. "symfony/phpunit-bridge": "^5.0"
  3591. },
  3592. "type": "library",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-master": "3.4.x-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-0": {
  3600. "Pimple": "src/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "Fabien Potencier",
  3610. "email": "fabien@symfony.com"
  3611. }
  3612. ],
  3613. "description": "Pimple, a simple Dependency Injection Container",
  3614. "homepage": "https://pimple.symfony.com",
  3615. "keywords": [
  3616. "container",
  3617. "dependency injection"
  3618. ],
  3619. "support": {
  3620. "source": "https://github.com/silexphp/Pimple/tree/v3.4.0"
  3621. },
  3622. "time": "2021-03-06T08:28:00+00:00"
  3623. },
  3624. {
  3625. "name": "psr/cache",
  3626. "version": "1.0.1",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/php-fig/cache.git",
  3630. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3635. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3636. "shasum": "",
  3637. "mirrors": [
  3638. {
  3639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3640. "preferred": true
  3641. }
  3642. ]
  3643. },
  3644. "require": {
  3645. "php": ">=5.3.0"
  3646. },
  3647. "type": "library",
  3648. "extra": {
  3649. "branch-alias": {
  3650. "dev-master": "1.0.x-dev"
  3651. }
  3652. },
  3653. "autoload": {
  3654. "psr-4": {
  3655. "Psr\\Cache\\": "src/"
  3656. }
  3657. },
  3658. "notification-url": "https://packagist.org/downloads/",
  3659. "license": [
  3660. "MIT"
  3661. ],
  3662. "authors": [
  3663. {
  3664. "name": "PHP-FIG",
  3665. "homepage": "http://www.php-fig.org/"
  3666. }
  3667. ],
  3668. "description": "Common interface for caching libraries",
  3669. "keywords": [
  3670. "cache",
  3671. "psr",
  3672. "psr-6"
  3673. ],
  3674. "support": {
  3675. "source": "https://github.com/php-fig/cache/tree/master"
  3676. },
  3677. "time": "2016-08-06T20:24:11+00:00"
  3678. },
  3679. {
  3680. "name": "psr/container",
  3681. "version": "1.1.1",
  3682. "source": {
  3683. "type": "git",
  3684. "url": "https://github.com/php-fig/container.git",
  3685. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  3686. },
  3687. "dist": {
  3688. "type": "zip",
  3689. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  3690. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  3691. "shasum": "",
  3692. "mirrors": [
  3693. {
  3694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3695. "preferred": true
  3696. }
  3697. ]
  3698. },
  3699. "require": {
  3700. "php": ">=7.2.0"
  3701. },
  3702. "type": "library",
  3703. "autoload": {
  3704. "psr-4": {
  3705. "Psr\\Container\\": "src/"
  3706. }
  3707. },
  3708. "notification-url": "https://packagist.org/downloads/",
  3709. "license": [
  3710. "MIT"
  3711. ],
  3712. "authors": [
  3713. {
  3714. "name": "PHP-FIG",
  3715. "homepage": "https://www.php-fig.org/"
  3716. }
  3717. ],
  3718. "description": "Common Container Interface (PHP FIG PSR-11)",
  3719. "homepage": "https://github.com/php-fig/container",
  3720. "keywords": [
  3721. "PSR-11",
  3722. "container",
  3723. "container-interface",
  3724. "container-interop",
  3725. "psr"
  3726. ],
  3727. "time": "2021-03-05T17:36:06+00:00"
  3728. },
  3729. {
  3730. "name": "psr/event-dispatcher",
  3731. "version": "1.0.0",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/php-fig/event-dispatcher.git",
  3735. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3740. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3741. "shasum": "",
  3742. "mirrors": [
  3743. {
  3744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3745. "preferred": true
  3746. }
  3747. ]
  3748. },
  3749. "require": {
  3750. "php": ">=7.2.0"
  3751. },
  3752. "type": "library",
  3753. "extra": {
  3754. "branch-alias": {
  3755. "dev-master": "1.0.x-dev"
  3756. }
  3757. },
  3758. "autoload": {
  3759. "psr-4": {
  3760. "Psr\\EventDispatcher\\": "src/"
  3761. }
  3762. },
  3763. "notification-url": "https://packagist.org/downloads/",
  3764. "license": [
  3765. "MIT"
  3766. ],
  3767. "authors": [
  3768. {
  3769. "name": "PHP-FIG",
  3770. "homepage": "http://www.php-fig.org/"
  3771. }
  3772. ],
  3773. "description": "Standard interfaces for event handling.",
  3774. "keywords": [
  3775. "events",
  3776. "psr",
  3777. "psr-14"
  3778. ],
  3779. "time": "2019-01-08T18:20:26+00:00"
  3780. },
  3781. {
  3782. "name": "psr/http-client",
  3783. "version": "1.0.1",
  3784. "source": {
  3785. "type": "git",
  3786. "url": "https://github.com/php-fig/http-client.git",
  3787. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3788. },
  3789. "dist": {
  3790. "type": "zip",
  3791. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3792. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3793. "shasum": "",
  3794. "mirrors": [
  3795. {
  3796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3797. "preferred": true
  3798. }
  3799. ]
  3800. },
  3801. "require": {
  3802. "php": "^7.0 || ^8.0",
  3803. "psr/http-message": "^1.0"
  3804. },
  3805. "type": "library",
  3806. "extra": {
  3807. "branch-alias": {
  3808. "dev-master": "1.0.x-dev"
  3809. }
  3810. },
  3811. "autoload": {
  3812. "psr-4": {
  3813. "Psr\\Http\\Client\\": "src/"
  3814. }
  3815. },
  3816. "notification-url": "https://packagist.org/downloads/",
  3817. "license": [
  3818. "MIT"
  3819. ],
  3820. "authors": [
  3821. {
  3822. "name": "PHP-FIG",
  3823. "homepage": "http://www.php-fig.org/"
  3824. }
  3825. ],
  3826. "description": "Common interface for HTTP clients",
  3827. "homepage": "https://github.com/php-fig/http-client",
  3828. "keywords": [
  3829. "http",
  3830. "http-client",
  3831. "psr",
  3832. "psr-18"
  3833. ],
  3834. "time": "2020-06-29T06:28:15+00:00"
  3835. },
  3836. {
  3837. "name": "psr/http-factory",
  3838. "version": "1.0.1",
  3839. "source": {
  3840. "type": "git",
  3841. "url": "https://github.com/php-fig/http-factory.git",
  3842. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3843. },
  3844. "dist": {
  3845. "type": "zip",
  3846. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3847. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3848. "shasum": "",
  3849. "mirrors": [
  3850. {
  3851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3852. "preferred": true
  3853. }
  3854. ]
  3855. },
  3856. "require": {
  3857. "php": ">=7.0.0",
  3858. "psr/http-message": "^1.0"
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "branch-alias": {
  3863. "dev-master": "1.0.x-dev"
  3864. }
  3865. },
  3866. "autoload": {
  3867. "psr-4": {
  3868. "Psr\\Http\\Message\\": "src/"
  3869. }
  3870. },
  3871. "notification-url": "https://packagist.org/downloads/",
  3872. "license": [
  3873. "MIT"
  3874. ],
  3875. "authors": [
  3876. {
  3877. "name": "PHP-FIG",
  3878. "homepage": "http://www.php-fig.org/"
  3879. }
  3880. ],
  3881. "description": "Common interfaces for PSR-7 HTTP message factories",
  3882. "keywords": [
  3883. "factory",
  3884. "http",
  3885. "message",
  3886. "psr",
  3887. "psr-17",
  3888. "psr-7",
  3889. "request",
  3890. "response"
  3891. ],
  3892. "time": "2019-04-30T12:38:16+00:00"
  3893. },
  3894. {
  3895. "name": "psr/http-message",
  3896. "version": "1.0.1",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://github.com/php-fig/http-message.git",
  3900. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3901. },
  3902. "dist": {
  3903. "type": "zip",
  3904. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3905. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  3906. "shasum": "",
  3907. "mirrors": [
  3908. {
  3909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3910. "preferred": true
  3911. }
  3912. ]
  3913. },
  3914. "require": {
  3915. "php": ">=5.3.0"
  3916. },
  3917. "type": "library",
  3918. "extra": {
  3919. "branch-alias": {
  3920. "dev-master": "1.0.x-dev"
  3921. }
  3922. },
  3923. "autoload": {
  3924. "psr-4": {
  3925. "Psr\\Http\\Message\\": "src/"
  3926. }
  3927. },
  3928. "notification-url": "https://packagist.org/downloads/",
  3929. "license": [
  3930. "MIT"
  3931. ],
  3932. "authors": [
  3933. {
  3934. "name": "PHP-FIG",
  3935. "homepage": "http://www.php-fig.org/"
  3936. }
  3937. ],
  3938. "description": "Common interface for HTTP messages",
  3939. "homepage": "https://github.com/php-fig/http-message",
  3940. "keywords": [
  3941. "http",
  3942. "http-message",
  3943. "psr",
  3944. "psr-7",
  3945. "request",
  3946. "response"
  3947. ],
  3948. "time": "2016-08-06T14:39:51+00:00"
  3949. },
  3950. {
  3951. "name": "psr/log",
  3952. "version": "1.1.4",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/php-fig/log.git",
  3956. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3961. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3962. "shasum": "",
  3963. "mirrors": [
  3964. {
  3965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3966. "preferred": true
  3967. }
  3968. ]
  3969. },
  3970. "require": {
  3971. "php": ">=5.3.0"
  3972. },
  3973. "type": "library",
  3974. "extra": {
  3975. "branch-alias": {
  3976. "dev-master": "1.1.x-dev"
  3977. }
  3978. },
  3979. "autoload": {
  3980. "psr-4": {
  3981. "Psr\\Log\\": "Psr/Log/"
  3982. }
  3983. },
  3984. "notification-url": "https://packagist.org/downloads/",
  3985. "license": [
  3986. "MIT"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "PHP-FIG",
  3991. "homepage": "https://www.php-fig.org/"
  3992. }
  3993. ],
  3994. "description": "Common interface for logging libraries",
  3995. "homepage": "https://github.com/php-fig/log",
  3996. "keywords": [
  3997. "log",
  3998. "psr",
  3999. "psr-3"
  4000. ],
  4001. "time": "2021-05-03T11:20:27+00:00"
  4002. },
  4003. {
  4004. "name": "psr/simple-cache",
  4005. "version": "1.0.1",
  4006. "source": {
  4007. "type": "git",
  4008. "url": "https://github.com/php-fig/simple-cache.git",
  4009. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4010. },
  4011. "dist": {
  4012. "type": "zip",
  4013. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4014. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4015. "shasum": "",
  4016. "mirrors": [
  4017. {
  4018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4019. "preferred": true
  4020. }
  4021. ]
  4022. },
  4023. "require": {
  4024. "php": ">=5.3.0"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "1.0.x-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "psr-4": {
  4034. "Psr\\SimpleCache\\": "src/"
  4035. }
  4036. },
  4037. "notification-url": "https://packagist.org/downloads/",
  4038. "license": [
  4039. "MIT"
  4040. ],
  4041. "authors": [
  4042. {
  4043. "name": "PHP-FIG",
  4044. "homepage": "http://www.php-fig.org/"
  4045. }
  4046. ],
  4047. "description": "Common interfaces for simple caching",
  4048. "keywords": [
  4049. "cache",
  4050. "caching",
  4051. "psr",
  4052. "psr-16",
  4053. "simple-cache"
  4054. ],
  4055. "time": "2017-10-23T01:57:42+00:00"
  4056. },
  4057. {
  4058. "name": "psy/psysh",
  4059. "version": "v0.10.8",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/bobthecow/psysh.git",
  4063. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4068. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4069. "shasum": "",
  4070. "mirrors": [
  4071. {
  4072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4073. "preferred": true
  4074. }
  4075. ]
  4076. },
  4077. "require": {
  4078. "ext-json": "*",
  4079. "ext-tokenizer": "*",
  4080. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4081. "php": "^8.0 || ^7.0 || ^5.5.9",
  4082. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4083. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4084. },
  4085. "require-dev": {
  4086. "bamarni/composer-bin-plugin": "^1.2",
  4087. "hoa/console": "3.17.*"
  4088. },
  4089. "suggest": {
  4090. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4091. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4092. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4093. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4094. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4095. },
  4096. "bin": [
  4097. "bin/psysh"
  4098. ],
  4099. "type": "library",
  4100. "extra": {
  4101. "branch-alias": {
  4102. "dev-main": "0.10.x-dev"
  4103. }
  4104. },
  4105. "autoload": {
  4106. "files": [
  4107. "src/functions.php"
  4108. ],
  4109. "psr-4": {
  4110. "Psy\\": "src/"
  4111. }
  4112. },
  4113. "notification-url": "https://packagist.org/downloads/",
  4114. "license": [
  4115. "MIT"
  4116. ],
  4117. "authors": [
  4118. {
  4119. "name": "Justin Hileman",
  4120. "email": "justin@justinhileman.info",
  4121. "homepage": "http://justinhileman.com"
  4122. }
  4123. ],
  4124. "description": "An interactive shell for modern PHP.",
  4125. "homepage": "http://psysh.org",
  4126. "keywords": [
  4127. "REPL",
  4128. "console",
  4129. "interactive",
  4130. "shell"
  4131. ],
  4132. "time": "2021-04-10T16:23:39+00:00"
  4133. },
  4134. {
  4135. "name": "ralouphie/getallheaders",
  4136. "version": "3.0.3",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://github.com/ralouphie/getallheaders.git",
  4140. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4145. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4146. "shasum": "",
  4147. "mirrors": [
  4148. {
  4149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4150. "preferred": true
  4151. }
  4152. ]
  4153. },
  4154. "require": {
  4155. "php": ">=5.6"
  4156. },
  4157. "require-dev": {
  4158. "php-coveralls/php-coveralls": "^2.1",
  4159. "phpunit/phpunit": "^5 || ^6.5"
  4160. },
  4161. "type": "library",
  4162. "autoload": {
  4163. "files": [
  4164. "src/getallheaders.php"
  4165. ]
  4166. },
  4167. "notification-url": "https://packagist.org/downloads/",
  4168. "license": [
  4169. "MIT"
  4170. ],
  4171. "authors": [
  4172. {
  4173. "name": "Ralph Khattar",
  4174. "email": "ralph.khattar@gmail.com"
  4175. }
  4176. ],
  4177. "description": "A polyfill for getallheaders.",
  4178. "time": "2019-03-08T08:55:37+00:00"
  4179. },
  4180. {
  4181. "name": "ramsey/collection",
  4182. "version": "1.2.1",
  4183. "source": {
  4184. "type": "git",
  4185. "url": "https://github.com/ramsey/collection.git",
  4186. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa"
  4187. },
  4188. "dist": {
  4189. "type": "zip",
  4190. "url": "https://api.github.com/repos/ramsey/collection/zipball/eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4191. "reference": "eaca1dc1054ddd10cbd83c1461907bee6fb528fa",
  4192. "shasum": "",
  4193. "mirrors": [
  4194. {
  4195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4196. "preferred": true
  4197. }
  4198. ]
  4199. },
  4200. "require": {
  4201. "php": "^7.3 || ^8",
  4202. "symfony/polyfill-php81": "^1.23"
  4203. },
  4204. "require-dev": {
  4205. "captainhook/captainhook": "^5.3",
  4206. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4207. "ergebnis/composer-normalize": "^2.6",
  4208. "fakerphp/faker": "^1.5",
  4209. "hamcrest/hamcrest-php": "^2",
  4210. "jangregor/phpstan-prophecy": "^0.8",
  4211. "mockery/mockery": "^1.3",
  4212. "phpspec/prophecy-phpunit": "^2.0",
  4213. "phpstan/extension-installer": "^1",
  4214. "phpstan/phpstan": "^0.12.32",
  4215. "phpstan/phpstan-mockery": "^0.12.5",
  4216. "phpstan/phpstan-phpunit": "^0.12.11",
  4217. "phpunit/phpunit": "^8.5 || ^9",
  4218. "psy/psysh": "^0.10.4",
  4219. "slevomat/coding-standard": "^6.3",
  4220. "squizlabs/php_codesniffer": "^3.5",
  4221. "vimeo/psalm": "^4.4"
  4222. },
  4223. "type": "library",
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Ramsey\\Collection\\": "src/"
  4227. }
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "MIT"
  4232. ],
  4233. "authors": [
  4234. {
  4235. "name": "Ben Ramsey",
  4236. "email": "ben@benramsey.com",
  4237. "homepage": "https://benramsey.com"
  4238. }
  4239. ],
  4240. "description": "A PHP library for representing and manipulating collections.",
  4241. "keywords": [
  4242. "array",
  4243. "collection",
  4244. "hash",
  4245. "map",
  4246. "queue",
  4247. "set"
  4248. ],
  4249. "time": "2021-08-06T03:41:06+00:00"
  4250. },
  4251. {
  4252. "name": "ramsey/uuid",
  4253. "version": "4.2.0",
  4254. "source": {
  4255. "type": "git",
  4256. "url": "https://github.com/ramsey/uuid.git",
  4257. "reference": "7231612a5221f5524d3575bebdce20eeef8547a1"
  4258. },
  4259. "dist": {
  4260. "type": "zip",
  4261. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7231612a5221f5524d3575bebdce20eeef8547a1",
  4262. "reference": "7231612a5221f5524d3575bebdce20eeef8547a1",
  4263. "shasum": "",
  4264. "mirrors": [
  4265. {
  4266. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4267. "preferred": true
  4268. }
  4269. ]
  4270. },
  4271. "require": {
  4272. "brick/math": "^0.8 || ^0.9",
  4273. "ext-json": "*",
  4274. "php": "^7.2 || ^8",
  4275. "ramsey/collection": "^1.0",
  4276. "symfony/polyfill-ctype": "^1.8"
  4277. },
  4278. "replace": {
  4279. "rhumsaa/uuid": "self.version"
  4280. },
  4281. "require-dev": {
  4282. "captainhook/captainhook": "^5.10",
  4283. "captainhook/plugin-composer": "^5.3",
  4284. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4285. "doctrine/annotations": "^1.8",
  4286. "ergebnis/composer-normalize": "^2.15",
  4287. "mockery/mockery": "^1.3",
  4288. "moontoast/math": "^1.1",
  4289. "paragonie/random-lib": "^2",
  4290. "php-mock/php-mock": "^2.2",
  4291. "php-mock/php-mock-mockery": "^1.3",
  4292. "php-parallel-lint/php-parallel-lint": "^1.1",
  4293. "phpbench/phpbench": "^1.0",
  4294. "phpstan/extension-installer": "^1.0",
  4295. "phpstan/phpstan": "^0.12",
  4296. "phpstan/phpstan-mockery": "^0.12",
  4297. "phpstan/phpstan-phpunit": "^0.12",
  4298. "phpunit/phpunit": "^8.5 || ^9",
  4299. "slevomat/coding-standard": "^7.0",
  4300. "squizlabs/php_codesniffer": "^3.5",
  4301. "vimeo/psalm": "^4.9"
  4302. },
  4303. "suggest": {
  4304. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4305. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4306. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4307. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4308. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4309. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4310. },
  4311. "type": "library",
  4312. "extra": {
  4313. "branch-alias": {
  4314. "dev-main": "4.x-dev"
  4315. },
  4316. "captainhook": {
  4317. "force-install": true
  4318. }
  4319. },
  4320. "autoload": {
  4321. "psr-4": {
  4322. "Ramsey\\Uuid\\": "src/"
  4323. },
  4324. "files": [
  4325. "src/functions.php"
  4326. ]
  4327. },
  4328. "notification-url": "https://packagist.org/downloads/",
  4329. "license": [
  4330. "MIT"
  4331. ],
  4332. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4333. "keywords": [
  4334. "guid",
  4335. "identifier",
  4336. "uuid"
  4337. ],
  4338. "time": "2021-08-06T22:30:43+00:00"
  4339. },
  4340. {
  4341. "name": "spatie/eloquent-sortable",
  4342. "version": "3.11.0",
  4343. "source": {
  4344. "type": "git",
  4345. "url": "https://github.com/spatie/eloquent-sortable.git",
  4346. "reference": "b06fa886559f8d40e31c8a69fd32bd45401dc5da"
  4347. },
  4348. "dist": {
  4349. "type": "zip",
  4350. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/b06fa886559f8d40e31c8a69fd32bd45401dc5da",
  4351. "reference": "b06fa886559f8d40e31c8a69fd32bd45401dc5da",
  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. "illuminate/database": "^6.0|^7.0|^8.0",
  4362. "illuminate/support": "^6.0|^7.0|^8.0",
  4363. "php": "^7.3|^8.0"
  4364. },
  4365. "require-dev": {
  4366. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4367. "phpunit/phpunit": "^8.0|^9.0"
  4368. },
  4369. "type": "library",
  4370. "extra": {
  4371. "laravel": {
  4372. "providers": [
  4373. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  4374. ]
  4375. }
  4376. },
  4377. "autoload": {
  4378. "psr-4": {
  4379. "Spatie\\EloquentSortable\\": "src/"
  4380. }
  4381. },
  4382. "notification-url": "https://packagist.org/downloads/",
  4383. "license": [
  4384. "MIT"
  4385. ],
  4386. "authors": [
  4387. {
  4388. "name": "Freek Van der Herten",
  4389. "email": "freek@spatie.be"
  4390. }
  4391. ],
  4392. "description": "Sortable behaviour for eloquent models",
  4393. "homepage": "https://github.com/spatie/eloquent-sortable",
  4394. "keywords": [
  4395. "behaviour",
  4396. "eloquent",
  4397. "laravel",
  4398. "model",
  4399. "sort",
  4400. "sortable"
  4401. ],
  4402. "support": {
  4403. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  4404. "source": "https://github.com/spatie/eloquent-sortable/tree/3.11.0"
  4405. },
  4406. "funding": [
  4407. {
  4408. "url": "https://github.com/spatie",
  4409. "type": "github"
  4410. }
  4411. ],
  4412. "time": "2021-01-18T00:32:12+00:00"
  4413. },
  4414. {
  4415. "name": "swiftmailer/swiftmailer",
  4416. "version": "v6.2.7",
  4417. "source": {
  4418. "type": "git",
  4419. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4420. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4421. },
  4422. "dist": {
  4423. "type": "zip",
  4424. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4425. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4426. "shasum": "",
  4427. "mirrors": [
  4428. {
  4429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4430. "preferred": true
  4431. }
  4432. ]
  4433. },
  4434. "require": {
  4435. "egulias/email-validator": "^2.0|^3.1",
  4436. "php": ">=7.0.0",
  4437. "symfony/polyfill-iconv": "^1.0",
  4438. "symfony/polyfill-intl-idn": "^1.10",
  4439. "symfony/polyfill-mbstring": "^1.0"
  4440. },
  4441. "require-dev": {
  4442. "mockery/mockery": "^1.0",
  4443. "symfony/phpunit-bridge": "^4.4|^5.0"
  4444. },
  4445. "suggest": {
  4446. "ext-intl": "Needed to support internationalized email addresses"
  4447. },
  4448. "type": "library",
  4449. "extra": {
  4450. "branch-alias": {
  4451. "dev-master": "6.2-dev"
  4452. }
  4453. },
  4454. "autoload": {
  4455. "files": [
  4456. "lib/swift_required.php"
  4457. ]
  4458. },
  4459. "notification-url": "https://packagist.org/downloads/",
  4460. "license": [
  4461. "MIT"
  4462. ],
  4463. "authors": [
  4464. {
  4465. "name": "Chris Corbyn"
  4466. },
  4467. {
  4468. "name": "Fabien Potencier",
  4469. "email": "fabien@symfony.com"
  4470. }
  4471. ],
  4472. "description": "Swiftmailer, free feature-rich PHP mailer",
  4473. "homepage": "https://swiftmailer.symfony.com",
  4474. "keywords": [
  4475. "email",
  4476. "mail",
  4477. "mailer"
  4478. ],
  4479. "time": "2021-03-09T12:30:35+00:00"
  4480. },
  4481. {
  4482. "name": "symfony/cache",
  4483. "version": "v5.3.4",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/symfony/cache.git",
  4487. "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661",
  4492. "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661",
  4493. "shasum": "",
  4494. "mirrors": [
  4495. {
  4496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4497. "preferred": true
  4498. }
  4499. ]
  4500. },
  4501. "require": {
  4502. "php": ">=7.2.5",
  4503. "psr/cache": "^1.0|^2.0",
  4504. "psr/log": "^1.1|^2|^3",
  4505. "symfony/cache-contracts": "^1.1.7|^2",
  4506. "symfony/deprecation-contracts": "^2.1",
  4507. "symfony/polyfill-php80": "^1.16",
  4508. "symfony/service-contracts": "^1.1|^2",
  4509. "symfony/var-exporter": "^4.4|^5.0"
  4510. },
  4511. "conflict": {
  4512. "doctrine/dbal": "<2.10",
  4513. "symfony/dependency-injection": "<4.4",
  4514. "symfony/http-kernel": "<4.4",
  4515. "symfony/var-dumper": "<4.4"
  4516. },
  4517. "provide": {
  4518. "psr/cache-implementation": "1.0|2.0",
  4519. "psr/simple-cache-implementation": "1.0",
  4520. "symfony/cache-implementation": "1.0|2.0"
  4521. },
  4522. "require-dev": {
  4523. "cache/integration-tests": "dev-master",
  4524. "doctrine/cache": "^1.6|^2.0",
  4525. "doctrine/dbal": "^2.10|^3.0",
  4526. "predis/predis": "^1.1",
  4527. "psr/simple-cache": "^1.0",
  4528. "symfony/config": "^4.4|^5.0",
  4529. "symfony/dependency-injection": "^4.4|^5.0",
  4530. "symfony/filesystem": "^4.4|^5.0",
  4531. "symfony/http-kernel": "^4.4|^5.0",
  4532. "symfony/messenger": "^4.4|^5.0",
  4533. "symfony/var-dumper": "^4.4|^5.0"
  4534. },
  4535. "type": "library",
  4536. "autoload": {
  4537. "psr-4": {
  4538. "Symfony\\Component\\Cache\\": ""
  4539. },
  4540. "exclude-from-classmap": [
  4541. "/Tests/"
  4542. ]
  4543. },
  4544. "notification-url": "https://packagist.org/downloads/",
  4545. "license": [
  4546. "MIT"
  4547. ],
  4548. "authors": [
  4549. {
  4550. "name": "Nicolas Grekas",
  4551. "email": "p@tchwork.com"
  4552. },
  4553. {
  4554. "name": "Symfony Community",
  4555. "homepage": "https://symfony.com/contributors"
  4556. }
  4557. ],
  4558. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  4559. "homepage": "https://symfony.com",
  4560. "keywords": [
  4561. "caching",
  4562. "psr6"
  4563. ],
  4564. "support": {
  4565. "source": "https://github.com/symfony/cache/tree/v5.3.4"
  4566. },
  4567. "funding": [
  4568. {
  4569. "url": "https://symfony.com/sponsor",
  4570. "type": "custom"
  4571. },
  4572. {
  4573. "url": "https://github.com/fabpot",
  4574. "type": "github"
  4575. },
  4576. {
  4577. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4578. "type": "tidelift"
  4579. }
  4580. ],
  4581. "time": "2021-07-23T15:55:36+00:00"
  4582. },
  4583. {
  4584. "name": "symfony/cache-contracts",
  4585. "version": "v2.4.0",
  4586. "source": {
  4587. "type": "git",
  4588. "url": "https://github.com/symfony/cache-contracts.git",
  4589. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  4590. },
  4591. "dist": {
  4592. "type": "zip",
  4593. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  4594. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  4595. "shasum": "",
  4596. "mirrors": [
  4597. {
  4598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4599. "preferred": true
  4600. }
  4601. ]
  4602. },
  4603. "require": {
  4604. "php": ">=7.2.5",
  4605. "psr/cache": "^1.0|^2.0|^3.0"
  4606. },
  4607. "suggest": {
  4608. "symfony/cache-implementation": ""
  4609. },
  4610. "type": "library",
  4611. "extra": {
  4612. "branch-alias": {
  4613. "dev-main": "2.4-dev"
  4614. },
  4615. "thanks": {
  4616. "name": "symfony/contracts",
  4617. "url": "https://github.com/symfony/contracts"
  4618. }
  4619. },
  4620. "autoload": {
  4621. "psr-4": {
  4622. "Symfony\\Contracts\\Cache\\": ""
  4623. }
  4624. },
  4625. "notification-url": "https://packagist.org/downloads/",
  4626. "license": [
  4627. "MIT"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Nicolas Grekas",
  4632. "email": "p@tchwork.com"
  4633. },
  4634. {
  4635. "name": "Symfony Community",
  4636. "homepage": "https://symfony.com/contributors"
  4637. }
  4638. ],
  4639. "description": "Generic abstractions related to caching",
  4640. "homepage": "https://symfony.com",
  4641. "keywords": [
  4642. "abstractions",
  4643. "contracts",
  4644. "decoupling",
  4645. "interfaces",
  4646. "interoperability",
  4647. "standards"
  4648. ],
  4649. "support": {
  4650. "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0"
  4651. },
  4652. "funding": [
  4653. {
  4654. "url": "https://symfony.com/sponsor",
  4655. "type": "custom"
  4656. },
  4657. {
  4658. "url": "https://github.com/fabpot",
  4659. "type": "github"
  4660. },
  4661. {
  4662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4663. "type": "tidelift"
  4664. }
  4665. ],
  4666. "time": "2021-03-23T23:28:01+00:00"
  4667. },
  4668. {
  4669. "name": "symfony/console",
  4670. "version": "v5.3.6",
  4671. "source": {
  4672. "type": "git",
  4673. "url": "https://github.com/symfony/console.git",
  4674. "reference": "51b71afd6d2dc8f5063199357b9880cea8d8bfe2"
  4675. },
  4676. "dist": {
  4677. "type": "zip",
  4678. "url": "https://api.github.com/repos/symfony/console/zipball/51b71afd6d2dc8f5063199357b9880cea8d8bfe2",
  4679. "reference": "51b71afd6d2dc8f5063199357b9880cea8d8bfe2",
  4680. "shasum": "",
  4681. "mirrors": [
  4682. {
  4683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4684. "preferred": true
  4685. }
  4686. ]
  4687. },
  4688. "require": {
  4689. "php": ">=7.2.5",
  4690. "symfony/deprecation-contracts": "^2.1",
  4691. "symfony/polyfill-mbstring": "~1.0",
  4692. "symfony/polyfill-php73": "^1.8",
  4693. "symfony/polyfill-php80": "^1.16",
  4694. "symfony/service-contracts": "^1.1|^2",
  4695. "symfony/string": "^5.1"
  4696. },
  4697. "conflict": {
  4698. "psr/log": ">=3",
  4699. "symfony/dependency-injection": "<4.4",
  4700. "symfony/dotenv": "<5.1",
  4701. "symfony/event-dispatcher": "<4.4",
  4702. "symfony/lock": "<4.4",
  4703. "symfony/process": "<4.4"
  4704. },
  4705. "provide": {
  4706. "psr/log-implementation": "1.0|2.0"
  4707. },
  4708. "require-dev": {
  4709. "psr/log": "^1|^2",
  4710. "symfony/config": "^4.4|^5.0",
  4711. "symfony/dependency-injection": "^4.4|^5.0",
  4712. "symfony/event-dispatcher": "^4.4|^5.0",
  4713. "symfony/lock": "^4.4|^5.0",
  4714. "symfony/process": "^4.4|^5.0",
  4715. "symfony/var-dumper": "^4.4|^5.0"
  4716. },
  4717. "suggest": {
  4718. "psr/log": "For using the console logger",
  4719. "symfony/event-dispatcher": "",
  4720. "symfony/lock": "",
  4721. "symfony/process": ""
  4722. },
  4723. "type": "library",
  4724. "autoload": {
  4725. "psr-4": {
  4726. "Symfony\\Component\\Console\\": ""
  4727. },
  4728. "exclude-from-classmap": [
  4729. "/Tests/"
  4730. ]
  4731. },
  4732. "notification-url": "https://packagist.org/downloads/",
  4733. "license": [
  4734. "MIT"
  4735. ],
  4736. "authors": [
  4737. {
  4738. "name": "Fabien Potencier",
  4739. "email": "fabien@symfony.com"
  4740. },
  4741. {
  4742. "name": "Symfony Community",
  4743. "homepage": "https://symfony.com/contributors"
  4744. }
  4745. ],
  4746. "description": "Eases the creation of beautiful and testable command line interfaces",
  4747. "homepage": "https://symfony.com",
  4748. "keywords": [
  4749. "cli",
  4750. "command line",
  4751. "console",
  4752. "terminal"
  4753. ],
  4754. "time": "2021-07-27T19:10:22+00:00"
  4755. },
  4756. {
  4757. "name": "symfony/css-selector",
  4758. "version": "v5.3.4",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://github.com/symfony/css-selector.git",
  4762. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  4767. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  4768. "shasum": "",
  4769. "mirrors": [
  4770. {
  4771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4772. "preferred": true
  4773. }
  4774. ]
  4775. },
  4776. "require": {
  4777. "php": ">=7.2.5",
  4778. "symfony/polyfill-php80": "^1.16"
  4779. },
  4780. "type": "library",
  4781. "autoload": {
  4782. "psr-4": {
  4783. "Symfony\\Component\\CssSelector\\": ""
  4784. },
  4785. "exclude-from-classmap": [
  4786. "/Tests/"
  4787. ]
  4788. },
  4789. "notification-url": "https://packagist.org/downloads/",
  4790. "license": [
  4791. "MIT"
  4792. ],
  4793. "authors": [
  4794. {
  4795. "name": "Fabien Potencier",
  4796. "email": "fabien@symfony.com"
  4797. },
  4798. {
  4799. "name": "Jean-François Simon",
  4800. "email": "jeanfrancois.simon@sensiolabs.com"
  4801. },
  4802. {
  4803. "name": "Symfony Community",
  4804. "homepage": "https://symfony.com/contributors"
  4805. }
  4806. ],
  4807. "description": "Converts CSS selectors to XPath expressions",
  4808. "homepage": "https://symfony.com",
  4809. "time": "2021-07-21T12:38:00+00:00"
  4810. },
  4811. {
  4812. "name": "symfony/deprecation-contracts",
  4813. "version": "v2.4.0",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/symfony/deprecation-contracts.git",
  4817. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4822. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  4823. "shasum": "",
  4824. "mirrors": [
  4825. {
  4826. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4827. "preferred": true
  4828. }
  4829. ]
  4830. },
  4831. "require": {
  4832. "php": ">=7.1"
  4833. },
  4834. "type": "library",
  4835. "extra": {
  4836. "branch-alias": {
  4837. "dev-main": "2.4-dev"
  4838. },
  4839. "thanks": {
  4840. "name": "symfony/contracts",
  4841. "url": "https://github.com/symfony/contracts"
  4842. }
  4843. },
  4844. "autoload": {
  4845. "files": [
  4846. "function.php"
  4847. ]
  4848. },
  4849. "notification-url": "https://packagist.org/downloads/",
  4850. "license": [
  4851. "MIT"
  4852. ],
  4853. "authors": [
  4854. {
  4855. "name": "Nicolas Grekas",
  4856. "email": "p@tchwork.com"
  4857. },
  4858. {
  4859. "name": "Symfony Community",
  4860. "homepage": "https://symfony.com/contributors"
  4861. }
  4862. ],
  4863. "description": "A generic function and convention to trigger deprecation notices",
  4864. "homepage": "https://symfony.com",
  4865. "time": "2021-03-23T23:28:01+00:00"
  4866. },
  4867. {
  4868. "name": "symfony/error-handler",
  4869. "version": "v5.3.4",
  4870. "source": {
  4871. "type": "git",
  4872. "url": "https://github.com/symfony/error-handler.git",
  4873. "reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73"
  4874. },
  4875. "dist": {
  4876. "type": "zip",
  4877. "url": "https://api.github.com/repos/symfony/error-handler/zipball/281f6c4660bcf5844bb0346fe3a4664722fe4c73",
  4878. "reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73",
  4879. "shasum": "",
  4880. "mirrors": [
  4881. {
  4882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4883. "preferred": true
  4884. }
  4885. ]
  4886. },
  4887. "require": {
  4888. "php": ">=7.2.5",
  4889. "psr/log": "^1|^2|^3",
  4890. "symfony/var-dumper": "^4.4|^5.0"
  4891. },
  4892. "require-dev": {
  4893. "symfony/deprecation-contracts": "^2.1",
  4894. "symfony/http-kernel": "^4.4|^5.0",
  4895. "symfony/serializer": "^4.4|^5.0"
  4896. },
  4897. "type": "library",
  4898. "autoload": {
  4899. "psr-4": {
  4900. "Symfony\\Component\\ErrorHandler\\": ""
  4901. },
  4902. "exclude-from-classmap": [
  4903. "/Tests/"
  4904. ]
  4905. },
  4906. "notification-url": "https://packagist.org/downloads/",
  4907. "license": [
  4908. "MIT"
  4909. ],
  4910. "authors": [
  4911. {
  4912. "name": "Fabien Potencier",
  4913. "email": "fabien@symfony.com"
  4914. },
  4915. {
  4916. "name": "Symfony Community",
  4917. "homepage": "https://symfony.com/contributors"
  4918. }
  4919. ],
  4920. "description": "Provides tools to manage errors and ease debugging PHP code",
  4921. "homepage": "https://symfony.com",
  4922. "time": "2021-07-23T15:55:36+00:00"
  4923. },
  4924. {
  4925. "name": "symfony/event-dispatcher",
  4926. "version": "v5.3.4",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://github.com/symfony/event-dispatcher.git",
  4930. "reference": "f2fd2208157553874560f3645d4594303058c4bd"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f2fd2208157553874560f3645d4594303058c4bd",
  4935. "reference": "f2fd2208157553874560f3645d4594303058c4bd",
  4936. "shasum": "",
  4937. "mirrors": [
  4938. {
  4939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4940. "preferred": true
  4941. }
  4942. ]
  4943. },
  4944. "require": {
  4945. "php": ">=7.2.5",
  4946. "symfony/deprecation-contracts": "^2.1",
  4947. "symfony/event-dispatcher-contracts": "^2",
  4948. "symfony/polyfill-php80": "^1.16"
  4949. },
  4950. "conflict": {
  4951. "symfony/dependency-injection": "<4.4"
  4952. },
  4953. "provide": {
  4954. "psr/event-dispatcher-implementation": "1.0",
  4955. "symfony/event-dispatcher-implementation": "2.0"
  4956. },
  4957. "require-dev": {
  4958. "psr/log": "^1|^2|^3",
  4959. "symfony/config": "^4.4|^5.0",
  4960. "symfony/dependency-injection": "^4.4|^5.0",
  4961. "symfony/error-handler": "^4.4|^5.0",
  4962. "symfony/expression-language": "^4.4|^5.0",
  4963. "symfony/http-foundation": "^4.4|^5.0",
  4964. "symfony/service-contracts": "^1.1|^2",
  4965. "symfony/stopwatch": "^4.4|^5.0"
  4966. },
  4967. "suggest": {
  4968. "symfony/dependency-injection": "",
  4969. "symfony/http-kernel": ""
  4970. },
  4971. "type": "library",
  4972. "autoload": {
  4973. "psr-4": {
  4974. "Symfony\\Component\\EventDispatcher\\": ""
  4975. },
  4976. "exclude-from-classmap": [
  4977. "/Tests/"
  4978. ]
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "MIT"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Fabien Potencier",
  4987. "email": "fabien@symfony.com"
  4988. },
  4989. {
  4990. "name": "Symfony Community",
  4991. "homepage": "https://symfony.com/contributors"
  4992. }
  4993. ],
  4994. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4995. "homepage": "https://symfony.com",
  4996. "time": "2021-07-23T15:55:36+00:00"
  4997. },
  4998. {
  4999. "name": "symfony/event-dispatcher-contracts",
  5000. "version": "v2.4.0",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5004. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5009. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5010. "shasum": "",
  5011. "mirrors": [
  5012. {
  5013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5014. "preferred": true
  5015. }
  5016. ]
  5017. },
  5018. "require": {
  5019. "php": ">=7.2.5",
  5020. "psr/event-dispatcher": "^1"
  5021. },
  5022. "suggest": {
  5023. "symfony/event-dispatcher-implementation": ""
  5024. },
  5025. "type": "library",
  5026. "extra": {
  5027. "branch-alias": {
  5028. "dev-main": "2.4-dev"
  5029. },
  5030. "thanks": {
  5031. "name": "symfony/contracts",
  5032. "url": "https://github.com/symfony/contracts"
  5033. }
  5034. },
  5035. "autoload": {
  5036. "psr-4": {
  5037. "Symfony\\Contracts\\EventDispatcher\\": ""
  5038. }
  5039. },
  5040. "notification-url": "https://packagist.org/downloads/",
  5041. "license": [
  5042. "MIT"
  5043. ],
  5044. "authors": [
  5045. {
  5046. "name": "Nicolas Grekas",
  5047. "email": "p@tchwork.com"
  5048. },
  5049. {
  5050. "name": "Symfony Community",
  5051. "homepage": "https://symfony.com/contributors"
  5052. }
  5053. ],
  5054. "description": "Generic abstractions related to dispatching event",
  5055. "homepage": "https://symfony.com",
  5056. "keywords": [
  5057. "abstractions",
  5058. "contracts",
  5059. "decoupling",
  5060. "interfaces",
  5061. "interoperability",
  5062. "standards"
  5063. ],
  5064. "time": "2021-03-23T23:28:01+00:00"
  5065. },
  5066. {
  5067. "name": "symfony/finder",
  5068. "version": "v5.3.4",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/symfony/finder.git",
  5072. "reference": "17f50e06018baec41551a71a15731287dbaab186"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/symfony/finder/zipball/17f50e06018baec41551a71a15731287dbaab186",
  5077. "reference": "17f50e06018baec41551a71a15731287dbaab186",
  5078. "shasum": "",
  5079. "mirrors": [
  5080. {
  5081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5082. "preferred": true
  5083. }
  5084. ]
  5085. },
  5086. "require": {
  5087. "php": ">=7.2.5",
  5088. "symfony/polyfill-php80": "^1.16"
  5089. },
  5090. "type": "library",
  5091. "autoload": {
  5092. "psr-4": {
  5093. "Symfony\\Component\\Finder\\": ""
  5094. },
  5095. "exclude-from-classmap": [
  5096. "/Tests/"
  5097. ]
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "MIT"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "Fabien Potencier",
  5106. "email": "fabien@symfony.com"
  5107. },
  5108. {
  5109. "name": "Symfony Community",
  5110. "homepage": "https://symfony.com/contributors"
  5111. }
  5112. ],
  5113. "description": "Finds files and directories via an intuitive fluent interface",
  5114. "homepage": "https://symfony.com",
  5115. "time": "2021-07-23T15:54:19+00:00"
  5116. },
  5117. {
  5118. "name": "symfony/http-client-contracts",
  5119. "version": "v2.4.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/symfony/http-client-contracts.git",
  5123. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5128. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5129. "shasum": "",
  5130. "mirrors": [
  5131. {
  5132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5133. "preferred": true
  5134. }
  5135. ]
  5136. },
  5137. "require": {
  5138. "php": ">=7.2.5"
  5139. },
  5140. "suggest": {
  5141. "symfony/http-client-implementation": ""
  5142. },
  5143. "type": "library",
  5144. "extra": {
  5145. "branch-alias": {
  5146. "dev-main": "2.4-dev"
  5147. },
  5148. "thanks": {
  5149. "name": "symfony/contracts",
  5150. "url": "https://github.com/symfony/contracts"
  5151. }
  5152. },
  5153. "autoload": {
  5154. "psr-4": {
  5155. "Symfony\\Contracts\\HttpClient\\": ""
  5156. }
  5157. },
  5158. "notification-url": "https://packagist.org/downloads/",
  5159. "license": [
  5160. "MIT"
  5161. ],
  5162. "authors": [
  5163. {
  5164. "name": "Nicolas Grekas",
  5165. "email": "p@tchwork.com"
  5166. },
  5167. {
  5168. "name": "Symfony Community",
  5169. "homepage": "https://symfony.com/contributors"
  5170. }
  5171. ],
  5172. "description": "Generic abstractions related to HTTP clients",
  5173. "homepage": "https://symfony.com",
  5174. "keywords": [
  5175. "abstractions",
  5176. "contracts",
  5177. "decoupling",
  5178. "interfaces",
  5179. "interoperability",
  5180. "standards"
  5181. ],
  5182. "time": "2021-04-11T23:07:08+00:00"
  5183. },
  5184. {
  5185. "name": "symfony/http-foundation",
  5186. "version": "v5.3.6",
  5187. "source": {
  5188. "type": "git",
  5189. "url": "https://github.com/symfony/http-foundation.git",
  5190. "reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75"
  5191. },
  5192. "dist": {
  5193. "type": "zip",
  5194. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a8388f7b7054a7401997008ce9cd8c6b0ab7ac75",
  5195. "reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75",
  5196. "shasum": "",
  5197. "mirrors": [
  5198. {
  5199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5200. "preferred": true
  5201. }
  5202. ]
  5203. },
  5204. "require": {
  5205. "php": ">=7.2.5",
  5206. "symfony/deprecation-contracts": "^2.1",
  5207. "symfony/polyfill-mbstring": "~1.1",
  5208. "symfony/polyfill-php80": "^1.16"
  5209. },
  5210. "require-dev": {
  5211. "predis/predis": "~1.0",
  5212. "symfony/cache": "^4.4|^5.0",
  5213. "symfony/expression-language": "^4.4|^5.0",
  5214. "symfony/mime": "^4.4|^5.0"
  5215. },
  5216. "suggest": {
  5217. "symfony/mime": "To use the file extension guesser"
  5218. },
  5219. "type": "library",
  5220. "autoload": {
  5221. "psr-4": {
  5222. "Symfony\\Component\\HttpFoundation\\": ""
  5223. },
  5224. "exclude-from-classmap": [
  5225. "/Tests/"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Fabien Potencier",
  5235. "email": "fabien@symfony.com"
  5236. },
  5237. {
  5238. "name": "Symfony Community",
  5239. "homepage": "https://symfony.com/contributors"
  5240. }
  5241. ],
  5242. "description": "Defines an object-oriented layer for the HTTP specification",
  5243. "homepage": "https://symfony.com",
  5244. "time": "2021-07-27T17:08:17+00:00"
  5245. },
  5246. {
  5247. "name": "symfony/http-kernel",
  5248. "version": "v5.3.6",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/symfony/http-kernel.git",
  5252. "reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/60030f209018356b3b553b9dbd84ad2071c1b7e0",
  5257. "reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0",
  5258. "shasum": "",
  5259. "mirrors": [
  5260. {
  5261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5262. "preferred": true
  5263. }
  5264. ]
  5265. },
  5266. "require": {
  5267. "php": ">=7.2.5",
  5268. "psr/log": "^1|^2",
  5269. "symfony/deprecation-contracts": "^2.1",
  5270. "symfony/error-handler": "^4.4|^5.0",
  5271. "symfony/event-dispatcher": "^5.0",
  5272. "symfony/http-client-contracts": "^1.1|^2",
  5273. "symfony/http-foundation": "^5.3",
  5274. "symfony/polyfill-ctype": "^1.8",
  5275. "symfony/polyfill-php73": "^1.9",
  5276. "symfony/polyfill-php80": "^1.16"
  5277. },
  5278. "conflict": {
  5279. "symfony/browser-kit": "<4.4",
  5280. "symfony/cache": "<5.0",
  5281. "symfony/config": "<5.0",
  5282. "symfony/console": "<4.4",
  5283. "symfony/dependency-injection": "<5.3",
  5284. "symfony/doctrine-bridge": "<5.0",
  5285. "symfony/form": "<5.0",
  5286. "symfony/http-client": "<5.0",
  5287. "symfony/mailer": "<5.0",
  5288. "symfony/messenger": "<5.0",
  5289. "symfony/translation": "<5.0",
  5290. "symfony/twig-bridge": "<5.0",
  5291. "symfony/validator": "<5.0",
  5292. "twig/twig": "<2.13"
  5293. },
  5294. "provide": {
  5295. "psr/log-implementation": "1.0|2.0"
  5296. },
  5297. "require-dev": {
  5298. "psr/cache": "^1.0|^2.0|^3.0",
  5299. "symfony/browser-kit": "^4.4|^5.0",
  5300. "symfony/config": "^5.0",
  5301. "symfony/console": "^4.4|^5.0",
  5302. "symfony/css-selector": "^4.4|^5.0",
  5303. "symfony/dependency-injection": "^5.3",
  5304. "symfony/dom-crawler": "^4.4|^5.0",
  5305. "symfony/expression-language": "^4.4|^5.0",
  5306. "symfony/finder": "^4.4|^5.0",
  5307. "symfony/process": "^4.4|^5.0",
  5308. "symfony/routing": "^4.4|^5.0",
  5309. "symfony/stopwatch": "^4.4|^5.0",
  5310. "symfony/translation": "^4.4|^5.0",
  5311. "symfony/translation-contracts": "^1.1|^2",
  5312. "twig/twig": "^2.13|^3.0.4"
  5313. },
  5314. "suggest": {
  5315. "symfony/browser-kit": "",
  5316. "symfony/config": "",
  5317. "symfony/console": "",
  5318. "symfony/dependency-injection": ""
  5319. },
  5320. "type": "library",
  5321. "autoload": {
  5322. "psr-4": {
  5323. "Symfony\\Component\\HttpKernel\\": ""
  5324. },
  5325. "exclude-from-classmap": [
  5326. "/Tests/"
  5327. ]
  5328. },
  5329. "notification-url": "https://packagist.org/downloads/",
  5330. "license": [
  5331. "MIT"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Fabien Potencier",
  5336. "email": "fabien@symfony.com"
  5337. },
  5338. {
  5339. "name": "Symfony Community",
  5340. "homepage": "https://symfony.com/contributors"
  5341. }
  5342. ],
  5343. "description": "Provides a structured process for converting a Request into a Response",
  5344. "homepage": "https://symfony.com",
  5345. "time": "2021-07-29T07:06:27+00:00"
  5346. },
  5347. {
  5348. "name": "symfony/mime",
  5349. "version": "v5.3.4",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/symfony/mime.git",
  5353. "reference": "633e4e8afe9e529e5599d71238849a4218dd497b"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/symfony/mime/zipball/633e4e8afe9e529e5599d71238849a4218dd497b",
  5358. "reference": "633e4e8afe9e529e5599d71238849a4218dd497b",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "php": ">=7.2.5",
  5369. "symfony/deprecation-contracts": "^2.1",
  5370. "symfony/polyfill-intl-idn": "^1.10",
  5371. "symfony/polyfill-mbstring": "^1.0",
  5372. "symfony/polyfill-php80": "^1.16"
  5373. },
  5374. "conflict": {
  5375. "egulias/email-validator": "~3.0.0",
  5376. "phpdocumentor/reflection-docblock": "<3.2.2",
  5377. "phpdocumentor/type-resolver": "<1.4.0",
  5378. "symfony/mailer": "<4.4"
  5379. },
  5380. "require-dev": {
  5381. "egulias/email-validator": "^2.1.10|^3.1",
  5382. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5383. "symfony/dependency-injection": "^4.4|^5.0",
  5384. "symfony/property-access": "^4.4|^5.1",
  5385. "symfony/property-info": "^4.4|^5.1",
  5386. "symfony/serializer": "^5.2"
  5387. },
  5388. "type": "library",
  5389. "autoload": {
  5390. "psr-4": {
  5391. "Symfony\\Component\\Mime\\": ""
  5392. },
  5393. "exclude-from-classmap": [
  5394. "/Tests/"
  5395. ]
  5396. },
  5397. "notification-url": "https://packagist.org/downloads/",
  5398. "license": [
  5399. "MIT"
  5400. ],
  5401. "authors": [
  5402. {
  5403. "name": "Fabien Potencier",
  5404. "email": "fabien@symfony.com"
  5405. },
  5406. {
  5407. "name": "Symfony Community",
  5408. "homepage": "https://symfony.com/contributors"
  5409. }
  5410. ],
  5411. "description": "Allows manipulating MIME messages",
  5412. "homepage": "https://symfony.com",
  5413. "keywords": [
  5414. "mime",
  5415. "mime-type"
  5416. ],
  5417. "time": "2021-07-21T12:40:44+00:00"
  5418. },
  5419. {
  5420. "name": "symfony/polyfill-ctype",
  5421. "version": "v1.23.0",
  5422. "source": {
  5423. "type": "git",
  5424. "url": "https://github.com/symfony/polyfill-ctype.git",
  5425. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5426. },
  5427. "dist": {
  5428. "type": "zip",
  5429. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5430. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5431. "shasum": "",
  5432. "mirrors": [
  5433. {
  5434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5435. "preferred": true
  5436. }
  5437. ]
  5438. },
  5439. "require": {
  5440. "php": ">=7.1"
  5441. },
  5442. "suggest": {
  5443. "ext-ctype": "For best performance"
  5444. },
  5445. "type": "library",
  5446. "extra": {
  5447. "branch-alias": {
  5448. "dev-main": "1.23-dev"
  5449. },
  5450. "thanks": {
  5451. "name": "symfony/polyfill",
  5452. "url": "https://github.com/symfony/polyfill"
  5453. }
  5454. },
  5455. "autoload": {
  5456. "psr-4": {
  5457. "Symfony\\Polyfill\\Ctype\\": ""
  5458. },
  5459. "files": [
  5460. "bootstrap.php"
  5461. ]
  5462. },
  5463. "notification-url": "https://packagist.org/downloads/",
  5464. "license": [
  5465. "MIT"
  5466. ],
  5467. "authors": [
  5468. {
  5469. "name": "Gert de Pagter",
  5470. "email": "BackEndTea@gmail.com"
  5471. },
  5472. {
  5473. "name": "Symfony Community",
  5474. "homepage": "https://symfony.com/contributors"
  5475. }
  5476. ],
  5477. "description": "Symfony polyfill for ctype functions",
  5478. "homepage": "https://symfony.com",
  5479. "keywords": [
  5480. "compatibility",
  5481. "ctype",
  5482. "polyfill",
  5483. "portable"
  5484. ],
  5485. "time": "2021-02-19T12:13:01+00:00"
  5486. },
  5487. {
  5488. "name": "symfony/polyfill-iconv",
  5489. "version": "v1.23.0",
  5490. "source": {
  5491. "type": "git",
  5492. "url": "https://github.com/symfony/polyfill-iconv.git",
  5493. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  5494. },
  5495. "dist": {
  5496. "type": "zip",
  5497. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5498. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  5499. "shasum": "",
  5500. "mirrors": [
  5501. {
  5502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5503. "preferred": true
  5504. }
  5505. ]
  5506. },
  5507. "require": {
  5508. "php": ">=7.1"
  5509. },
  5510. "suggest": {
  5511. "ext-iconv": "For best performance"
  5512. },
  5513. "type": "library",
  5514. "extra": {
  5515. "branch-alias": {
  5516. "dev-main": "1.23-dev"
  5517. },
  5518. "thanks": {
  5519. "name": "symfony/polyfill",
  5520. "url": "https://github.com/symfony/polyfill"
  5521. }
  5522. },
  5523. "autoload": {
  5524. "psr-4": {
  5525. "Symfony\\Polyfill\\Iconv\\": ""
  5526. },
  5527. "files": [
  5528. "bootstrap.php"
  5529. ]
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Nicolas Grekas",
  5538. "email": "p@tchwork.com"
  5539. },
  5540. {
  5541. "name": "Symfony Community",
  5542. "homepage": "https://symfony.com/contributors"
  5543. }
  5544. ],
  5545. "description": "Symfony polyfill for the Iconv extension",
  5546. "homepage": "https://symfony.com",
  5547. "keywords": [
  5548. "compatibility",
  5549. "iconv",
  5550. "polyfill",
  5551. "portable",
  5552. "shim"
  5553. ],
  5554. "time": "2021-05-27T09:27:20+00:00"
  5555. },
  5556. {
  5557. "name": "symfony/polyfill-intl-grapheme",
  5558. "version": "v1.23.1",
  5559. "source": {
  5560. "type": "git",
  5561. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5562. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  5563. },
  5564. "dist": {
  5565. "type": "zip",
  5566. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  5567. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  5568. "shasum": "",
  5569. "mirrors": [
  5570. {
  5571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5572. "preferred": true
  5573. }
  5574. ]
  5575. },
  5576. "require": {
  5577. "php": ">=7.1"
  5578. },
  5579. "suggest": {
  5580. "ext-intl": "For best performance"
  5581. },
  5582. "type": "library",
  5583. "extra": {
  5584. "branch-alias": {
  5585. "dev-main": "1.23-dev"
  5586. },
  5587. "thanks": {
  5588. "name": "symfony/polyfill",
  5589. "url": "https://github.com/symfony/polyfill"
  5590. }
  5591. },
  5592. "autoload": {
  5593. "psr-4": {
  5594. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5595. },
  5596. "files": [
  5597. "bootstrap.php"
  5598. ]
  5599. },
  5600. "notification-url": "https://packagist.org/downloads/",
  5601. "license": [
  5602. "MIT"
  5603. ],
  5604. "authors": [
  5605. {
  5606. "name": "Nicolas Grekas",
  5607. "email": "p@tchwork.com"
  5608. },
  5609. {
  5610. "name": "Symfony Community",
  5611. "homepage": "https://symfony.com/contributors"
  5612. }
  5613. ],
  5614. "description": "Symfony polyfill for intl's grapheme_* functions",
  5615. "homepage": "https://symfony.com",
  5616. "keywords": [
  5617. "compatibility",
  5618. "grapheme",
  5619. "intl",
  5620. "polyfill",
  5621. "portable",
  5622. "shim"
  5623. ],
  5624. "time": "2021-05-27T12:26:48+00:00"
  5625. },
  5626. {
  5627. "name": "symfony/polyfill-intl-idn",
  5628. "version": "v1.23.0",
  5629. "source": {
  5630. "type": "git",
  5631. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5632. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  5633. },
  5634. "dist": {
  5635. "type": "zip",
  5636. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  5637. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  5638. "shasum": "",
  5639. "mirrors": [
  5640. {
  5641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5642. "preferred": true
  5643. }
  5644. ]
  5645. },
  5646. "require": {
  5647. "php": ">=7.1",
  5648. "symfony/polyfill-intl-normalizer": "^1.10",
  5649. "symfony/polyfill-php72": "^1.10"
  5650. },
  5651. "suggest": {
  5652. "ext-intl": "For best performance"
  5653. },
  5654. "type": "library",
  5655. "extra": {
  5656. "branch-alias": {
  5657. "dev-main": "1.23-dev"
  5658. },
  5659. "thanks": {
  5660. "name": "symfony/polyfill",
  5661. "url": "https://github.com/symfony/polyfill"
  5662. }
  5663. },
  5664. "autoload": {
  5665. "psr-4": {
  5666. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5667. },
  5668. "files": [
  5669. "bootstrap.php"
  5670. ]
  5671. },
  5672. "notification-url": "https://packagist.org/downloads/",
  5673. "license": [
  5674. "MIT"
  5675. ],
  5676. "authors": [
  5677. {
  5678. "name": "Laurent Bassin",
  5679. "email": "laurent@bassin.info"
  5680. },
  5681. {
  5682. "name": "Trevor Rowbotham",
  5683. "email": "trevor.rowbotham@pm.me"
  5684. },
  5685. {
  5686. "name": "Symfony Community",
  5687. "homepage": "https://symfony.com/contributors"
  5688. }
  5689. ],
  5690. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5691. "homepage": "https://symfony.com",
  5692. "keywords": [
  5693. "compatibility",
  5694. "idn",
  5695. "intl",
  5696. "polyfill",
  5697. "portable",
  5698. "shim"
  5699. ],
  5700. "time": "2021-05-27T09:27:20+00:00"
  5701. },
  5702. {
  5703. "name": "symfony/polyfill-intl-normalizer",
  5704. "version": "v1.23.0",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5708. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  5713. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  5714. "shasum": "",
  5715. "mirrors": [
  5716. {
  5717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5718. "preferred": true
  5719. }
  5720. ]
  5721. },
  5722. "require": {
  5723. "php": ">=7.1"
  5724. },
  5725. "suggest": {
  5726. "ext-intl": "For best performance"
  5727. },
  5728. "type": "library",
  5729. "extra": {
  5730. "branch-alias": {
  5731. "dev-main": "1.23-dev"
  5732. },
  5733. "thanks": {
  5734. "name": "symfony/polyfill",
  5735. "url": "https://github.com/symfony/polyfill"
  5736. }
  5737. },
  5738. "autoload": {
  5739. "psr-4": {
  5740. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5741. },
  5742. "files": [
  5743. "bootstrap.php"
  5744. ],
  5745. "classmap": [
  5746. "Resources/stubs"
  5747. ]
  5748. },
  5749. "notification-url": "https://packagist.org/downloads/",
  5750. "license": [
  5751. "MIT"
  5752. ],
  5753. "authors": [
  5754. {
  5755. "name": "Nicolas Grekas",
  5756. "email": "p@tchwork.com"
  5757. },
  5758. {
  5759. "name": "Symfony Community",
  5760. "homepage": "https://symfony.com/contributors"
  5761. }
  5762. ],
  5763. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5764. "homepage": "https://symfony.com",
  5765. "keywords": [
  5766. "compatibility",
  5767. "intl",
  5768. "normalizer",
  5769. "polyfill",
  5770. "portable",
  5771. "shim"
  5772. ],
  5773. "time": "2021-02-19T12:13:01+00:00"
  5774. },
  5775. {
  5776. "name": "symfony/polyfill-mbstring",
  5777. "version": "v1.23.1",
  5778. "source": {
  5779. "type": "git",
  5780. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5781. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  5782. },
  5783. "dist": {
  5784. "type": "zip",
  5785. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  5786. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  5787. "shasum": "",
  5788. "mirrors": [
  5789. {
  5790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5791. "preferred": true
  5792. }
  5793. ]
  5794. },
  5795. "require": {
  5796. "php": ">=7.1"
  5797. },
  5798. "suggest": {
  5799. "ext-mbstring": "For best performance"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-main": "1.23-dev"
  5805. },
  5806. "thanks": {
  5807. "name": "symfony/polyfill",
  5808. "url": "https://github.com/symfony/polyfill"
  5809. }
  5810. },
  5811. "autoload": {
  5812. "psr-4": {
  5813. "Symfony\\Polyfill\\Mbstring\\": ""
  5814. },
  5815. "files": [
  5816. "bootstrap.php"
  5817. ]
  5818. },
  5819. "notification-url": "https://packagist.org/downloads/",
  5820. "license": [
  5821. "MIT"
  5822. ],
  5823. "authors": [
  5824. {
  5825. "name": "Nicolas Grekas",
  5826. "email": "p@tchwork.com"
  5827. },
  5828. {
  5829. "name": "Symfony Community",
  5830. "homepage": "https://symfony.com/contributors"
  5831. }
  5832. ],
  5833. "description": "Symfony polyfill for the Mbstring extension",
  5834. "homepage": "https://symfony.com",
  5835. "keywords": [
  5836. "compatibility",
  5837. "mbstring",
  5838. "polyfill",
  5839. "portable",
  5840. "shim"
  5841. ],
  5842. "time": "2021-05-27T12:26:48+00:00"
  5843. },
  5844. {
  5845. "name": "symfony/polyfill-php56",
  5846. "version": "v1.20.0",
  5847. "source": {
  5848. "type": "git",
  5849. "url": "https://github.com/symfony/polyfill-php56.git",
  5850. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  5851. },
  5852. "dist": {
  5853. "type": "zip",
  5854. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5855. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  5856. "shasum": "",
  5857. "mirrors": [
  5858. {
  5859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5860. "preferred": true
  5861. }
  5862. ]
  5863. },
  5864. "require": {
  5865. "php": ">=7.1"
  5866. },
  5867. "type": "metapackage",
  5868. "extra": {
  5869. "branch-alias": {
  5870. "dev-main": "1.20-dev"
  5871. },
  5872. "thanks": {
  5873. "name": "symfony/polyfill",
  5874. "url": "https://github.com/symfony/polyfill"
  5875. }
  5876. },
  5877. "notification-url": "https://packagist.org/downloads/",
  5878. "license": [
  5879. "MIT"
  5880. ],
  5881. "authors": [
  5882. {
  5883. "name": "Nicolas Grekas",
  5884. "email": "p@tchwork.com"
  5885. },
  5886. {
  5887. "name": "Symfony Community",
  5888. "homepage": "https://symfony.com/contributors"
  5889. }
  5890. ],
  5891. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  5892. "homepage": "https://symfony.com",
  5893. "keywords": [
  5894. "compatibility",
  5895. "polyfill",
  5896. "portable",
  5897. "shim"
  5898. ],
  5899. "support": {
  5900. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  5901. },
  5902. "funding": [
  5903. {
  5904. "url": "https://symfony.com/sponsor",
  5905. "type": "custom"
  5906. },
  5907. {
  5908. "url": "https://github.com/fabpot",
  5909. "type": "github"
  5910. },
  5911. {
  5912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5913. "type": "tidelift"
  5914. }
  5915. ],
  5916. "time": "2020-10-23T14:02:19+00:00"
  5917. },
  5918. {
  5919. "name": "symfony/polyfill-php72",
  5920. "version": "v1.23.0",
  5921. "source": {
  5922. "type": "git",
  5923. "url": "https://github.com/symfony/polyfill-php72.git",
  5924. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  5925. },
  5926. "dist": {
  5927. "type": "zip",
  5928. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  5929. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  5930. "shasum": "",
  5931. "mirrors": [
  5932. {
  5933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5934. "preferred": true
  5935. }
  5936. ]
  5937. },
  5938. "require": {
  5939. "php": ">=7.1"
  5940. },
  5941. "type": "library",
  5942. "extra": {
  5943. "branch-alias": {
  5944. "dev-main": "1.23-dev"
  5945. },
  5946. "thanks": {
  5947. "name": "symfony/polyfill",
  5948. "url": "https://github.com/symfony/polyfill"
  5949. }
  5950. },
  5951. "autoload": {
  5952. "psr-4": {
  5953. "Symfony\\Polyfill\\Php72\\": ""
  5954. },
  5955. "files": [
  5956. "bootstrap.php"
  5957. ]
  5958. },
  5959. "notification-url": "https://packagist.org/downloads/",
  5960. "license": [
  5961. "MIT"
  5962. ],
  5963. "authors": [
  5964. {
  5965. "name": "Nicolas Grekas",
  5966. "email": "p@tchwork.com"
  5967. },
  5968. {
  5969. "name": "Symfony Community",
  5970. "homepage": "https://symfony.com/contributors"
  5971. }
  5972. ],
  5973. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5974. "homepage": "https://symfony.com",
  5975. "keywords": [
  5976. "compatibility",
  5977. "polyfill",
  5978. "portable",
  5979. "shim"
  5980. ],
  5981. "time": "2021-05-27T09:17:38+00:00"
  5982. },
  5983. {
  5984. "name": "symfony/polyfill-php73",
  5985. "version": "v1.23.0",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/symfony/polyfill-php73.git",
  5989. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  5994. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  5995. "shasum": "",
  5996. "mirrors": [
  5997. {
  5998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5999. "preferred": true
  6000. }
  6001. ]
  6002. },
  6003. "require": {
  6004. "php": ">=7.1"
  6005. },
  6006. "type": "library",
  6007. "extra": {
  6008. "branch-alias": {
  6009. "dev-main": "1.23-dev"
  6010. },
  6011. "thanks": {
  6012. "name": "symfony/polyfill",
  6013. "url": "https://github.com/symfony/polyfill"
  6014. }
  6015. },
  6016. "autoload": {
  6017. "psr-4": {
  6018. "Symfony\\Polyfill\\Php73\\": ""
  6019. },
  6020. "files": [
  6021. "bootstrap.php"
  6022. ],
  6023. "classmap": [
  6024. "Resources/stubs"
  6025. ]
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "MIT"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "Nicolas Grekas",
  6034. "email": "p@tchwork.com"
  6035. },
  6036. {
  6037. "name": "Symfony Community",
  6038. "homepage": "https://symfony.com/contributors"
  6039. }
  6040. ],
  6041. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6042. "homepage": "https://symfony.com",
  6043. "keywords": [
  6044. "compatibility",
  6045. "polyfill",
  6046. "portable",
  6047. "shim"
  6048. ],
  6049. "time": "2021-02-19T12:13:01+00:00"
  6050. },
  6051. {
  6052. "name": "symfony/polyfill-php80",
  6053. "version": "v1.23.1",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/symfony/polyfill-php80.git",
  6057. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6062. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6063. "shasum": "",
  6064. "mirrors": [
  6065. {
  6066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6067. "preferred": true
  6068. }
  6069. ]
  6070. },
  6071. "require": {
  6072. "php": ">=7.1"
  6073. },
  6074. "type": "library",
  6075. "extra": {
  6076. "branch-alias": {
  6077. "dev-main": "1.23-dev"
  6078. },
  6079. "thanks": {
  6080. "name": "symfony/polyfill",
  6081. "url": "https://github.com/symfony/polyfill"
  6082. }
  6083. },
  6084. "autoload": {
  6085. "psr-4": {
  6086. "Symfony\\Polyfill\\Php80\\": ""
  6087. },
  6088. "files": [
  6089. "bootstrap.php"
  6090. ],
  6091. "classmap": [
  6092. "Resources/stubs"
  6093. ]
  6094. },
  6095. "notification-url": "https://packagist.org/downloads/",
  6096. "license": [
  6097. "MIT"
  6098. ],
  6099. "authors": [
  6100. {
  6101. "name": "Ion Bazan",
  6102. "email": "ion.bazan@gmail.com"
  6103. },
  6104. {
  6105. "name": "Nicolas Grekas",
  6106. "email": "p@tchwork.com"
  6107. },
  6108. {
  6109. "name": "Symfony Community",
  6110. "homepage": "https://symfony.com/contributors"
  6111. }
  6112. ],
  6113. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6114. "homepage": "https://symfony.com",
  6115. "keywords": [
  6116. "compatibility",
  6117. "polyfill",
  6118. "portable",
  6119. "shim"
  6120. ],
  6121. "time": "2021-07-28T13:41:28+00:00"
  6122. },
  6123. {
  6124. "name": "symfony/polyfill-php81",
  6125. "version": "v1.23.0",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/symfony/polyfill-php81.git",
  6129. "reference": "e66119f3de95efc359483f810c4c3e6436279436"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
  6134. "reference": "e66119f3de95efc359483f810c4c3e6436279436",
  6135. "shasum": "",
  6136. "mirrors": [
  6137. {
  6138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6139. "preferred": true
  6140. }
  6141. ]
  6142. },
  6143. "require": {
  6144. "php": ">=7.1"
  6145. },
  6146. "type": "library",
  6147. "extra": {
  6148. "branch-alias": {
  6149. "dev-main": "1.23-dev"
  6150. },
  6151. "thanks": {
  6152. "name": "symfony/polyfill",
  6153. "url": "https://github.com/symfony/polyfill"
  6154. }
  6155. },
  6156. "autoload": {
  6157. "psr-4": {
  6158. "Symfony\\Polyfill\\Php81\\": ""
  6159. },
  6160. "files": [
  6161. "bootstrap.php"
  6162. ],
  6163. "classmap": [
  6164. "Resources/stubs"
  6165. ]
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "MIT"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "Nicolas Grekas",
  6174. "email": "p@tchwork.com"
  6175. },
  6176. {
  6177. "name": "Symfony Community",
  6178. "homepage": "https://symfony.com/contributors"
  6179. }
  6180. ],
  6181. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6182. "homepage": "https://symfony.com",
  6183. "keywords": [
  6184. "compatibility",
  6185. "polyfill",
  6186. "portable",
  6187. "shim"
  6188. ],
  6189. "time": "2021-05-21T13:25:03+00:00"
  6190. },
  6191. {
  6192. "name": "symfony/process",
  6193. "version": "v5.3.4",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/symfony/process.git",
  6197. "reference": "d16634ee55b895bd85ec714dadc58e4428ecf030"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/symfony/process/zipball/d16634ee55b895bd85ec714dadc58e4428ecf030",
  6202. "reference": "d16634ee55b895bd85ec714dadc58e4428ecf030",
  6203. "shasum": "",
  6204. "mirrors": [
  6205. {
  6206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6207. "preferred": true
  6208. }
  6209. ]
  6210. },
  6211. "require": {
  6212. "php": ">=7.2.5",
  6213. "symfony/polyfill-php80": "^1.16"
  6214. },
  6215. "type": "library",
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Symfony\\Component\\Process\\": ""
  6219. },
  6220. "exclude-from-classmap": [
  6221. "/Tests/"
  6222. ]
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "MIT"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Fabien Potencier",
  6231. "email": "fabien@symfony.com"
  6232. },
  6233. {
  6234. "name": "Symfony Community",
  6235. "homepage": "https://symfony.com/contributors"
  6236. }
  6237. ],
  6238. "description": "Executes commands in sub-processes",
  6239. "homepage": "https://symfony.com",
  6240. "time": "2021-07-23T15:54:19+00:00"
  6241. },
  6242. {
  6243. "name": "symfony/psr-http-message-bridge",
  6244. "version": "v2.1.1",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6248. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9012994c4b4fb23e7c57dd86b763a417a04feba",
  6253. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba",
  6254. "shasum": "",
  6255. "mirrors": [
  6256. {
  6257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6258. "preferred": true
  6259. }
  6260. ]
  6261. },
  6262. "require": {
  6263. "php": ">=7.1",
  6264. "psr/http-message": "^1.0",
  6265. "symfony/http-foundation": "^4.4 || ^5.0"
  6266. },
  6267. "require-dev": {
  6268. "nyholm/psr7": "^1.1",
  6269. "psr/log": "^1.1 || ^2 || ^3",
  6270. "symfony/browser-kit": "^4.4 || ^5.0",
  6271. "symfony/config": "^4.4 || ^5.0",
  6272. "symfony/event-dispatcher": "^4.4 || ^5.0",
  6273. "symfony/framework-bundle": "^4.4 || ^5.0",
  6274. "symfony/http-kernel": "^4.4 || ^5.0",
  6275. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  6276. },
  6277. "suggest": {
  6278. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6279. },
  6280. "type": "symfony-bridge",
  6281. "extra": {
  6282. "branch-alias": {
  6283. "dev-main": "2.1-dev"
  6284. }
  6285. },
  6286. "autoload": {
  6287. "psr-4": {
  6288. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6289. },
  6290. "exclude-from-classmap": [
  6291. "/Tests/"
  6292. ]
  6293. },
  6294. "notification-url": "https://packagist.org/downloads/",
  6295. "license": [
  6296. "MIT"
  6297. ],
  6298. "authors": [
  6299. {
  6300. "name": "Fabien Potencier",
  6301. "email": "fabien@symfony.com"
  6302. },
  6303. {
  6304. "name": "Symfony Community",
  6305. "homepage": "http://symfony.com/contributors"
  6306. }
  6307. ],
  6308. "description": "PSR HTTP message bridge",
  6309. "homepage": "http://symfony.com",
  6310. "keywords": [
  6311. "http",
  6312. "http-message",
  6313. "psr-17",
  6314. "psr-7"
  6315. ],
  6316. "support": {
  6317. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6318. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.1"
  6319. },
  6320. "funding": [
  6321. {
  6322. "url": "https://symfony.com/sponsor",
  6323. "type": "custom"
  6324. },
  6325. {
  6326. "url": "https://github.com/fabpot",
  6327. "type": "github"
  6328. },
  6329. {
  6330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6331. "type": "tidelift"
  6332. }
  6333. ],
  6334. "time": "2021-07-27T17:25:39+00:00"
  6335. },
  6336. {
  6337. "name": "symfony/routing",
  6338. "version": "v5.3.4",
  6339. "source": {
  6340. "type": "git",
  6341. "url": "https://github.com/symfony/routing.git",
  6342. "reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4"
  6343. },
  6344. "dist": {
  6345. "type": "zip",
  6346. "url": "https://api.github.com/repos/symfony/routing/zipball/0a35d2f57d73c46ab6d042ced783b81d09a624c4",
  6347. "reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4",
  6348. "shasum": "",
  6349. "mirrors": [
  6350. {
  6351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6352. "preferred": true
  6353. }
  6354. ]
  6355. },
  6356. "require": {
  6357. "php": ">=7.2.5",
  6358. "symfony/deprecation-contracts": "^2.1",
  6359. "symfony/polyfill-php80": "^1.16"
  6360. },
  6361. "conflict": {
  6362. "doctrine/annotations": "<1.12",
  6363. "symfony/config": "<5.3",
  6364. "symfony/dependency-injection": "<4.4",
  6365. "symfony/yaml": "<4.4"
  6366. },
  6367. "require-dev": {
  6368. "doctrine/annotations": "^1.12",
  6369. "psr/log": "^1|^2|^3",
  6370. "symfony/config": "^5.3",
  6371. "symfony/dependency-injection": "^4.4|^5.0",
  6372. "symfony/expression-language": "^4.4|^5.0",
  6373. "symfony/http-foundation": "^4.4|^5.0",
  6374. "symfony/yaml": "^4.4|^5.0"
  6375. },
  6376. "suggest": {
  6377. "symfony/config": "For using the all-in-one router or any loader",
  6378. "symfony/expression-language": "For using expression matching",
  6379. "symfony/http-foundation": "For using a Symfony Request object",
  6380. "symfony/yaml": "For using the YAML loader"
  6381. },
  6382. "type": "library",
  6383. "autoload": {
  6384. "psr-4": {
  6385. "Symfony\\Component\\Routing\\": ""
  6386. },
  6387. "exclude-from-classmap": [
  6388. "/Tests/"
  6389. ]
  6390. },
  6391. "notification-url": "https://packagist.org/downloads/",
  6392. "license": [
  6393. "MIT"
  6394. ],
  6395. "authors": [
  6396. {
  6397. "name": "Fabien Potencier",
  6398. "email": "fabien@symfony.com"
  6399. },
  6400. {
  6401. "name": "Symfony Community",
  6402. "homepage": "https://symfony.com/contributors"
  6403. }
  6404. ],
  6405. "description": "Maps an HTTP request to a set of configuration variables",
  6406. "homepage": "https://symfony.com",
  6407. "keywords": [
  6408. "router",
  6409. "routing",
  6410. "uri",
  6411. "url"
  6412. ],
  6413. "time": "2021-07-23T15:55:36+00:00"
  6414. },
  6415. {
  6416. "name": "symfony/service-contracts",
  6417. "version": "v2.4.0",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://github.com/symfony/service-contracts.git",
  6421. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6426. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6427. "shasum": "",
  6428. "mirrors": [
  6429. {
  6430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6431. "preferred": true
  6432. }
  6433. ]
  6434. },
  6435. "require": {
  6436. "php": ">=7.2.5",
  6437. "psr/container": "^1.1"
  6438. },
  6439. "suggest": {
  6440. "symfony/service-implementation": ""
  6441. },
  6442. "type": "library",
  6443. "extra": {
  6444. "branch-alias": {
  6445. "dev-main": "2.4-dev"
  6446. },
  6447. "thanks": {
  6448. "name": "symfony/contracts",
  6449. "url": "https://github.com/symfony/contracts"
  6450. }
  6451. },
  6452. "autoload": {
  6453. "psr-4": {
  6454. "Symfony\\Contracts\\Service\\": ""
  6455. }
  6456. },
  6457. "notification-url": "https://packagist.org/downloads/",
  6458. "license": [
  6459. "MIT"
  6460. ],
  6461. "authors": [
  6462. {
  6463. "name": "Nicolas Grekas",
  6464. "email": "p@tchwork.com"
  6465. },
  6466. {
  6467. "name": "Symfony Community",
  6468. "homepage": "https://symfony.com/contributors"
  6469. }
  6470. ],
  6471. "description": "Generic abstractions related to writing services",
  6472. "homepage": "https://symfony.com",
  6473. "keywords": [
  6474. "abstractions",
  6475. "contracts",
  6476. "decoupling",
  6477. "interfaces",
  6478. "interoperability",
  6479. "standards"
  6480. ],
  6481. "time": "2021-04-01T10:43:52+00:00"
  6482. },
  6483. {
  6484. "name": "symfony/string",
  6485. "version": "v5.3.3",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/symfony/string.git",
  6489. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  6494. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  6495. "shasum": "",
  6496. "mirrors": [
  6497. {
  6498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6499. "preferred": true
  6500. }
  6501. ]
  6502. },
  6503. "require": {
  6504. "php": ">=7.2.5",
  6505. "symfony/polyfill-ctype": "~1.8",
  6506. "symfony/polyfill-intl-grapheme": "~1.0",
  6507. "symfony/polyfill-intl-normalizer": "~1.0",
  6508. "symfony/polyfill-mbstring": "~1.0",
  6509. "symfony/polyfill-php80": "~1.15"
  6510. },
  6511. "require-dev": {
  6512. "symfony/error-handler": "^4.4|^5.0",
  6513. "symfony/http-client": "^4.4|^5.0",
  6514. "symfony/translation-contracts": "^1.1|^2",
  6515. "symfony/var-exporter": "^4.4|^5.0"
  6516. },
  6517. "type": "library",
  6518. "autoload": {
  6519. "psr-4": {
  6520. "Symfony\\Component\\String\\": ""
  6521. },
  6522. "files": [
  6523. "Resources/functions.php"
  6524. ],
  6525. "exclude-from-classmap": [
  6526. "/Tests/"
  6527. ]
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Nicolas Grekas",
  6536. "email": "p@tchwork.com"
  6537. },
  6538. {
  6539. "name": "Symfony Community",
  6540. "homepage": "https://symfony.com/contributors"
  6541. }
  6542. ],
  6543. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6544. "homepage": "https://symfony.com",
  6545. "keywords": [
  6546. "grapheme",
  6547. "i18n",
  6548. "string",
  6549. "unicode",
  6550. "utf-8",
  6551. "utf8"
  6552. ],
  6553. "time": "2021-06-27T11:44:38+00:00"
  6554. },
  6555. {
  6556. "name": "symfony/translation",
  6557. "version": "v5.3.4",
  6558. "source": {
  6559. "type": "git",
  6560. "url": "https://github.com/symfony/translation.git",
  6561. "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1"
  6562. },
  6563. "dist": {
  6564. "type": "zip",
  6565. "url": "https://api.github.com/repos/symfony/translation/zipball/d89ad7292932c2699cbe4af98d72c5c6bbc504c1",
  6566. "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1",
  6567. "shasum": "",
  6568. "mirrors": [
  6569. {
  6570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6571. "preferred": true
  6572. }
  6573. ]
  6574. },
  6575. "require": {
  6576. "php": ">=7.2.5",
  6577. "symfony/deprecation-contracts": "^2.1",
  6578. "symfony/polyfill-mbstring": "~1.0",
  6579. "symfony/polyfill-php80": "^1.16",
  6580. "symfony/translation-contracts": "^2.3"
  6581. },
  6582. "conflict": {
  6583. "symfony/config": "<4.4",
  6584. "symfony/dependency-injection": "<5.0",
  6585. "symfony/http-kernel": "<5.0",
  6586. "symfony/twig-bundle": "<5.0",
  6587. "symfony/yaml": "<4.4"
  6588. },
  6589. "provide": {
  6590. "symfony/translation-implementation": "2.3"
  6591. },
  6592. "require-dev": {
  6593. "psr/log": "^1|^2|^3",
  6594. "symfony/config": "^4.4|^5.0",
  6595. "symfony/console": "^4.4|^5.0",
  6596. "symfony/dependency-injection": "^5.0",
  6597. "symfony/finder": "^4.4|^5.0",
  6598. "symfony/http-kernel": "^5.0",
  6599. "symfony/intl": "^4.4|^5.0",
  6600. "symfony/polyfill-intl-icu": "^1.21",
  6601. "symfony/service-contracts": "^1.1.2|^2",
  6602. "symfony/yaml": "^4.4|^5.0"
  6603. },
  6604. "suggest": {
  6605. "psr/log-implementation": "To use logging capability in translator",
  6606. "symfony/config": "",
  6607. "symfony/yaml": ""
  6608. },
  6609. "type": "library",
  6610. "autoload": {
  6611. "files": [
  6612. "Resources/functions.php"
  6613. ],
  6614. "psr-4": {
  6615. "Symfony\\Component\\Translation\\": ""
  6616. },
  6617. "exclude-from-classmap": [
  6618. "/Tests/"
  6619. ]
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "MIT"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Fabien Potencier",
  6628. "email": "fabien@symfony.com"
  6629. },
  6630. {
  6631. "name": "Symfony Community",
  6632. "homepage": "https://symfony.com/contributors"
  6633. }
  6634. ],
  6635. "description": "Provides tools to internationalize your application",
  6636. "homepage": "https://symfony.com",
  6637. "time": "2021-07-25T09:39:16+00:00"
  6638. },
  6639. {
  6640. "name": "symfony/translation-contracts",
  6641. "version": "v2.4.0",
  6642. "source": {
  6643. "type": "git",
  6644. "url": "https://github.com/symfony/translation-contracts.git",
  6645. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  6646. },
  6647. "dist": {
  6648. "type": "zip",
  6649. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  6650. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  6651. "shasum": "",
  6652. "mirrors": [
  6653. {
  6654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6655. "preferred": true
  6656. }
  6657. ]
  6658. },
  6659. "require": {
  6660. "php": ">=7.2.5"
  6661. },
  6662. "suggest": {
  6663. "symfony/translation-implementation": ""
  6664. },
  6665. "type": "library",
  6666. "extra": {
  6667. "branch-alias": {
  6668. "dev-main": "2.4-dev"
  6669. },
  6670. "thanks": {
  6671. "name": "symfony/contracts",
  6672. "url": "https://github.com/symfony/contracts"
  6673. }
  6674. },
  6675. "autoload": {
  6676. "psr-4": {
  6677. "Symfony\\Contracts\\Translation\\": ""
  6678. }
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Nicolas Grekas",
  6687. "email": "p@tchwork.com"
  6688. },
  6689. {
  6690. "name": "Symfony Community",
  6691. "homepage": "https://symfony.com/contributors"
  6692. }
  6693. ],
  6694. "description": "Generic abstractions related to translation",
  6695. "homepage": "https://symfony.com",
  6696. "keywords": [
  6697. "abstractions",
  6698. "contracts",
  6699. "decoupling",
  6700. "interfaces",
  6701. "interoperability",
  6702. "standards"
  6703. ],
  6704. "time": "2021-03-23T23:28:01+00:00"
  6705. },
  6706. {
  6707. "name": "symfony/var-dumper",
  6708. "version": "v5.3.6",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://github.com/symfony/var-dumper.git",
  6712. "reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0",
  6717. "reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0",
  6718. "shasum": "",
  6719. "mirrors": [
  6720. {
  6721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6722. "preferred": true
  6723. }
  6724. ]
  6725. },
  6726. "require": {
  6727. "php": ">=7.2.5",
  6728. "symfony/polyfill-mbstring": "~1.0",
  6729. "symfony/polyfill-php80": "^1.16"
  6730. },
  6731. "conflict": {
  6732. "phpunit/phpunit": "<5.4.3",
  6733. "symfony/console": "<4.4"
  6734. },
  6735. "require-dev": {
  6736. "ext-iconv": "*",
  6737. "symfony/console": "^4.4|^5.0",
  6738. "symfony/process": "^4.4|^5.0",
  6739. "twig/twig": "^2.13|^3.0.4"
  6740. },
  6741. "suggest": {
  6742. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6743. "ext-intl": "To show region name in time zone dump",
  6744. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6745. },
  6746. "bin": [
  6747. "Resources/bin/var-dump-server"
  6748. ],
  6749. "type": "library",
  6750. "autoload": {
  6751. "files": [
  6752. "Resources/functions/dump.php"
  6753. ],
  6754. "psr-4": {
  6755. "Symfony\\Component\\VarDumper\\": ""
  6756. },
  6757. "exclude-from-classmap": [
  6758. "/Tests/"
  6759. ]
  6760. },
  6761. "notification-url": "https://packagist.org/downloads/",
  6762. "license": [
  6763. "MIT"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Nicolas Grekas",
  6768. "email": "p@tchwork.com"
  6769. },
  6770. {
  6771. "name": "Symfony Community",
  6772. "homepage": "https://symfony.com/contributors"
  6773. }
  6774. ],
  6775. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6776. "homepage": "https://symfony.com",
  6777. "keywords": [
  6778. "debug",
  6779. "dump"
  6780. ],
  6781. "time": "2021-07-27T01:56:02+00:00"
  6782. },
  6783. {
  6784. "name": "symfony/var-exporter",
  6785. "version": "v5.3.4",
  6786. "source": {
  6787. "type": "git",
  6788. "url": "https://github.com/symfony/var-exporter.git",
  6789. "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0"
  6790. },
  6791. "dist": {
  6792. "type": "zip",
  6793. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b7898a65fc91e7c41de7a88c7db9aee9c0d432f0",
  6794. "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0",
  6795. "shasum": "",
  6796. "mirrors": [
  6797. {
  6798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6799. "preferred": true
  6800. }
  6801. ]
  6802. },
  6803. "require": {
  6804. "php": ">=7.2.5",
  6805. "symfony/polyfill-php80": "^1.16"
  6806. },
  6807. "require-dev": {
  6808. "symfony/var-dumper": "^4.4.9|^5.0.9"
  6809. },
  6810. "type": "library",
  6811. "autoload": {
  6812. "psr-4": {
  6813. "Symfony\\Component\\VarExporter\\": ""
  6814. },
  6815. "exclude-from-classmap": [
  6816. "/Tests/"
  6817. ]
  6818. },
  6819. "notification-url": "https://packagist.org/downloads/",
  6820. "license": [
  6821. "MIT"
  6822. ],
  6823. "authors": [
  6824. {
  6825. "name": "Nicolas Grekas",
  6826. "email": "p@tchwork.com"
  6827. },
  6828. {
  6829. "name": "Symfony Community",
  6830. "homepage": "https://symfony.com/contributors"
  6831. }
  6832. ],
  6833. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6834. "homepage": "https://symfony.com",
  6835. "keywords": [
  6836. "clone",
  6837. "construct",
  6838. "export",
  6839. "hydrate",
  6840. "instantiate",
  6841. "serialize"
  6842. ],
  6843. "support": {
  6844. "source": "https://github.com/symfony/var-exporter/tree/v5.3.4"
  6845. },
  6846. "funding": [
  6847. {
  6848. "url": "https://symfony.com/sponsor",
  6849. "type": "custom"
  6850. },
  6851. {
  6852. "url": "https://github.com/fabpot",
  6853. "type": "github"
  6854. },
  6855. {
  6856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6857. "type": "tidelift"
  6858. }
  6859. ],
  6860. "time": "2021-07-21T12:38:00+00:00"
  6861. },
  6862. {
  6863. "name": "tijsverkoyen/css-to-inline-styles",
  6864. "version": "2.2.3",
  6865. "source": {
  6866. "type": "git",
  6867. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6868. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  6869. },
  6870. "dist": {
  6871. "type": "zip",
  6872. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6873. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  6874. "shasum": "",
  6875. "mirrors": [
  6876. {
  6877. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6878. "preferred": true
  6879. }
  6880. ]
  6881. },
  6882. "require": {
  6883. "ext-dom": "*",
  6884. "ext-libxml": "*",
  6885. "php": "^5.5 || ^7.0 || ^8.0",
  6886. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  6887. },
  6888. "require-dev": {
  6889. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  6890. },
  6891. "type": "library",
  6892. "extra": {
  6893. "branch-alias": {
  6894. "dev-master": "2.2.x-dev"
  6895. }
  6896. },
  6897. "autoload": {
  6898. "psr-4": {
  6899. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6900. }
  6901. },
  6902. "notification-url": "https://packagist.org/downloads/",
  6903. "license": [
  6904. "BSD-3-Clause"
  6905. ],
  6906. "authors": [
  6907. {
  6908. "name": "Tijs Verkoyen",
  6909. "email": "css_to_inline_styles@verkoyen.eu",
  6910. "role": "Developer"
  6911. }
  6912. ],
  6913. "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.",
  6914. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6915. "time": "2020-07-13T06:12:54+00:00"
  6916. },
  6917. {
  6918. "name": "tymon/jwt-auth",
  6919. "version": "1.0.2",
  6920. "source": {
  6921. "type": "git",
  6922. "url": "https://github.com/tymondesigns/jwt-auth.git",
  6923. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  6924. },
  6925. "dist": {
  6926. "type": "zip",
  6927. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  6928. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  6929. "shasum": "",
  6930. "mirrors": [
  6931. {
  6932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6933. "preferred": true
  6934. }
  6935. ]
  6936. },
  6937. "require": {
  6938. "illuminate/auth": "^5.2|^6|^7|^8",
  6939. "illuminate/contracts": "^5.2|^6|^7|^8",
  6940. "illuminate/http": "^5.2|^6|^7|^8",
  6941. "illuminate/support": "^5.2|^6|^7|^8",
  6942. "lcobucci/jwt": "<3.4",
  6943. "namshi/jose": "^7.0",
  6944. "nesbot/carbon": "^1.0|^2.0",
  6945. "php": "^5.5.9|^7.0"
  6946. },
  6947. "require-dev": {
  6948. "illuminate/console": "^5.2|^6|^7|^8",
  6949. "illuminate/database": "^5.2|^6|^7|^8",
  6950. "illuminate/routing": "^5.2|^6|^7|^8",
  6951. "mockery/mockery": ">=0.9.9",
  6952. "phpunit/phpunit": "~4.8|~6.0"
  6953. },
  6954. "type": "library",
  6955. "extra": {
  6956. "branch-alias": {
  6957. "dev-develop": "1.0-dev"
  6958. },
  6959. "laravel": {
  6960. "aliases": {
  6961. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  6962. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  6963. },
  6964. "providers": [
  6965. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  6966. ]
  6967. }
  6968. },
  6969. "autoload": {
  6970. "psr-4": {
  6971. "Tymon\\JWTAuth\\": "src/"
  6972. }
  6973. },
  6974. "notification-url": "https://packagist.org/downloads/",
  6975. "license": [
  6976. "MIT"
  6977. ],
  6978. "authors": [
  6979. {
  6980. "name": "Sean Tymon",
  6981. "email": "tymon148@gmail.com",
  6982. "homepage": "https://tymon.xyz",
  6983. "role": "Developer"
  6984. }
  6985. ],
  6986. "description": "JSON Web Token Authentication for Laravel and Lumen",
  6987. "homepage": "https://github.com/tymondesigns/jwt-auth",
  6988. "keywords": [
  6989. "Authentication",
  6990. "JSON Web Token",
  6991. "auth",
  6992. "jwt",
  6993. "laravel"
  6994. ],
  6995. "support": {
  6996. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  6997. "source": "https://github.com/tymondesigns/jwt-auth"
  6998. },
  6999. "funding": [
  7000. {
  7001. "url": "https://www.patreon.com/seantymon",
  7002. "type": "patreon"
  7003. }
  7004. ],
  7005. "time": "2020-11-27T12:32:42+00:00"
  7006. },
  7007. {
  7008. "name": "vlucas/phpdotenv",
  7009. "version": "v5.3.0",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/vlucas/phpdotenv.git",
  7013. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  7018. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  7019. "shasum": "",
  7020. "mirrors": [
  7021. {
  7022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7023. "preferred": true
  7024. }
  7025. ]
  7026. },
  7027. "require": {
  7028. "ext-pcre": "*",
  7029. "graham-campbell/result-type": "^1.0.1",
  7030. "php": "^7.1.3 || ^8.0",
  7031. "phpoption/phpoption": "^1.7.4",
  7032. "symfony/polyfill-ctype": "^1.17",
  7033. "symfony/polyfill-mbstring": "^1.17",
  7034. "symfony/polyfill-php80": "^1.17"
  7035. },
  7036. "require-dev": {
  7037. "bamarni/composer-bin-plugin": "^1.4.1",
  7038. "ext-filter": "*",
  7039. "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
  7040. },
  7041. "suggest": {
  7042. "ext-filter": "Required to use the boolean validator."
  7043. },
  7044. "type": "library",
  7045. "extra": {
  7046. "branch-alias": {
  7047. "dev-master": "5.3-dev"
  7048. }
  7049. },
  7050. "autoload": {
  7051. "psr-4": {
  7052. "Dotenv\\": "src/"
  7053. }
  7054. },
  7055. "notification-url": "https://packagist.org/downloads/",
  7056. "license": [
  7057. "BSD-3-Clause"
  7058. ],
  7059. "authors": [
  7060. {
  7061. "name": "Graham Campbell",
  7062. "email": "graham@alt-three.com",
  7063. "homepage": "https://gjcampbell.co.uk/"
  7064. },
  7065. {
  7066. "name": "Vance Lucas",
  7067. "email": "vance@vancelucas.com",
  7068. "homepage": "https://vancelucas.com/"
  7069. }
  7070. ],
  7071. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7072. "keywords": [
  7073. "dotenv",
  7074. "env",
  7075. "environment"
  7076. ],
  7077. "time": "2021-01-20T15:23:13+00:00"
  7078. },
  7079. {
  7080. "name": "voku/portable-ascii",
  7081. "version": "1.5.6",
  7082. "source": {
  7083. "type": "git",
  7084. "url": "https://github.com/voku/portable-ascii.git",
  7085. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7086. },
  7087. "dist": {
  7088. "type": "zip",
  7089. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7090. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7091. "shasum": "",
  7092. "mirrors": [
  7093. {
  7094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7095. "preferred": true
  7096. }
  7097. ]
  7098. },
  7099. "require": {
  7100. "php": ">=7.0.0"
  7101. },
  7102. "require-dev": {
  7103. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7104. },
  7105. "suggest": {
  7106. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7107. },
  7108. "type": "library",
  7109. "autoload": {
  7110. "psr-4": {
  7111. "voku\\": "src/voku/"
  7112. }
  7113. },
  7114. "notification-url": "https://packagist.org/downloads/",
  7115. "license": [
  7116. "MIT"
  7117. ],
  7118. "authors": [
  7119. {
  7120. "name": "Lars Moelleken",
  7121. "homepage": "http://www.moelleken.org/"
  7122. }
  7123. ],
  7124. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7125. "homepage": "https://github.com/voku/portable-ascii",
  7126. "keywords": [
  7127. "ascii",
  7128. "clean",
  7129. "php"
  7130. ],
  7131. "time": "2020-11-12T00:07:28+00:00"
  7132. },
  7133. {
  7134. "name": "webmozart/assert",
  7135. "version": "1.10.0",
  7136. "source": {
  7137. "type": "git",
  7138. "url": "https://github.com/webmozarts/assert.git",
  7139. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7140. },
  7141. "dist": {
  7142. "type": "zip",
  7143. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7144. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7145. "shasum": "",
  7146. "mirrors": [
  7147. {
  7148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7149. "preferred": true
  7150. }
  7151. ]
  7152. },
  7153. "require": {
  7154. "php": "^7.2 || ^8.0",
  7155. "symfony/polyfill-ctype": "^1.8"
  7156. },
  7157. "conflict": {
  7158. "phpstan/phpstan": "<0.12.20",
  7159. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7160. },
  7161. "require-dev": {
  7162. "phpunit/phpunit": "^8.5.13"
  7163. },
  7164. "type": "library",
  7165. "extra": {
  7166. "branch-alias": {
  7167. "dev-master": "1.10-dev"
  7168. }
  7169. },
  7170. "autoload": {
  7171. "psr-4": {
  7172. "Webmozart\\Assert\\": "src/"
  7173. }
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Bernhard Schussek",
  7182. "email": "bschussek@gmail.com"
  7183. }
  7184. ],
  7185. "description": "Assertions to validate method input/output with nice error messages.",
  7186. "keywords": [
  7187. "assert",
  7188. "check",
  7189. "validate"
  7190. ],
  7191. "time": "2021-03-09T10:59:23+00:00"
  7192. }
  7193. ],
  7194. "packages-dev": [
  7195. {
  7196. "name": "barryvdh/laravel-ide-helper",
  7197. "version": "v2.10.0",
  7198. "source": {
  7199. "type": "git",
  7200. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7201. "reference": "73b1012b927633a1b4cd623c2e6b1678e6faef08"
  7202. },
  7203. "dist": {
  7204. "type": "zip",
  7205. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/73b1012b927633a1b4cd623c2e6b1678e6faef08",
  7206. "reference": "73b1012b927633a1b4cd623c2e6b1678e6faef08",
  7207. "shasum": "",
  7208. "mirrors": [
  7209. {
  7210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7211. "preferred": true
  7212. }
  7213. ]
  7214. },
  7215. "require": {
  7216. "barryvdh/reflection-docblock": "^2.0.6",
  7217. "composer/composer": "^1.6 || ^2",
  7218. "doctrine/dbal": "^2.6 || ^3",
  7219. "ext-json": "*",
  7220. "illuminate/console": "^8",
  7221. "illuminate/filesystem": "^8",
  7222. "illuminate/support": "^8",
  7223. "nikic/php-parser": "^4.7",
  7224. "php": "^7.3 || ^8.0",
  7225. "phpdocumentor/type-resolver": "^1.1.0"
  7226. },
  7227. "require-dev": {
  7228. "ext-pdo_sqlite": "*",
  7229. "friendsofphp/php-cs-fixer": "^2",
  7230. "illuminate/config": "^8",
  7231. "illuminate/view": "^8",
  7232. "mockery/mockery": "^1.4",
  7233. "orchestra/testbench": "^6",
  7234. "phpunit/phpunit": "^8.5 || ^9",
  7235. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  7236. "vimeo/psalm": "^3.12"
  7237. },
  7238. "suggest": {
  7239. "illuminate/events": "Required for automatic helper generation (^6|^7|^8)."
  7240. },
  7241. "type": "library",
  7242. "extra": {
  7243. "branch-alias": {
  7244. "dev-master": "2.9-dev"
  7245. },
  7246. "laravel": {
  7247. "providers": [
  7248. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7249. ]
  7250. }
  7251. },
  7252. "autoload": {
  7253. "psr-4": {
  7254. "Barryvdh\\LaravelIdeHelper\\": "src"
  7255. }
  7256. },
  7257. "notification-url": "https://packagist.org/downloads/",
  7258. "license": [
  7259. "MIT"
  7260. ],
  7261. "authors": [
  7262. {
  7263. "name": "Barry vd. Heuvel",
  7264. "email": "barryvdh@gmail.com"
  7265. }
  7266. ],
  7267. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7268. "keywords": [
  7269. "autocomplete",
  7270. "codeintel",
  7271. "helper",
  7272. "ide",
  7273. "laravel",
  7274. "netbeans",
  7275. "phpdoc",
  7276. "phpstorm",
  7277. "sublime"
  7278. ],
  7279. "support": {
  7280. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7281. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.10.0"
  7282. },
  7283. "funding": [
  7284. {
  7285. "url": "https://github.com/barryvdh",
  7286. "type": "github"
  7287. }
  7288. ],
  7289. "time": "2021-04-09T06:17:55+00:00"
  7290. },
  7291. {
  7292. "name": "barryvdh/reflection-docblock",
  7293. "version": "v2.0.6",
  7294. "source": {
  7295. "type": "git",
  7296. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7297. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  7298. },
  7299. "dist": {
  7300. "type": "zip",
  7301. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7302. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  7303. "shasum": "",
  7304. "mirrors": [
  7305. {
  7306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7307. "preferred": true
  7308. }
  7309. ]
  7310. },
  7311. "require": {
  7312. "php": ">=5.3.3"
  7313. },
  7314. "require-dev": {
  7315. "phpunit/phpunit": "~4.0,<4.5"
  7316. },
  7317. "suggest": {
  7318. "dflydev/markdown": "~1.0",
  7319. "erusev/parsedown": "~1.0"
  7320. },
  7321. "type": "library",
  7322. "extra": {
  7323. "branch-alias": {
  7324. "dev-master": "2.0.x-dev"
  7325. }
  7326. },
  7327. "autoload": {
  7328. "psr-0": {
  7329. "Barryvdh": [
  7330. "src/"
  7331. ]
  7332. }
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "MIT"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Mike van Riel",
  7341. "email": "mike.vanriel@naenius.com"
  7342. }
  7343. ],
  7344. "support": {
  7345. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6"
  7346. },
  7347. "time": "2018-12-13T10:34:14+00:00"
  7348. },
  7349. {
  7350. "name": "composer/ca-bundle",
  7351. "version": "1.2.10",
  7352. "source": {
  7353. "type": "git",
  7354. "url": "https://github.com/composer/ca-bundle.git",
  7355. "reference": "9fdb22c2e97a614657716178093cd1da90a64aa8"
  7356. },
  7357. "dist": {
  7358. "type": "zip",
  7359. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/9fdb22c2e97a614657716178093cd1da90a64aa8",
  7360. "reference": "9fdb22c2e97a614657716178093cd1da90a64aa8",
  7361. "shasum": "",
  7362. "mirrors": [
  7363. {
  7364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7365. "preferred": true
  7366. }
  7367. ]
  7368. },
  7369. "require": {
  7370. "ext-openssl": "*",
  7371. "ext-pcre": "*",
  7372. "php": "^5.3.2 || ^7.0 || ^8.0"
  7373. },
  7374. "require-dev": {
  7375. "phpstan/phpstan": "^0.12.55",
  7376. "psr/log": "^1.0",
  7377. "symfony/phpunit-bridge": "^4.2 || ^5",
  7378. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  7379. },
  7380. "type": "library",
  7381. "extra": {
  7382. "branch-alias": {
  7383. "dev-main": "1.x-dev"
  7384. }
  7385. },
  7386. "autoload": {
  7387. "psr-4": {
  7388. "Composer\\CaBundle\\": "src"
  7389. }
  7390. },
  7391. "notification-url": "https://packagist.org/downloads/",
  7392. "license": [
  7393. "MIT"
  7394. ],
  7395. "authors": [
  7396. {
  7397. "name": "Jordi Boggiano",
  7398. "email": "j.boggiano@seld.be",
  7399. "homepage": "http://seld.be"
  7400. }
  7401. ],
  7402. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  7403. "keywords": [
  7404. "cabundle",
  7405. "cacert",
  7406. "certificate",
  7407. "ssl",
  7408. "tls"
  7409. ],
  7410. "support": {
  7411. "irc": "irc://irc.freenode.org/composer",
  7412. "issues": "https://github.com/composer/ca-bundle/issues",
  7413. "source": "https://github.com/composer/ca-bundle/tree/1.2.10"
  7414. },
  7415. "funding": [
  7416. {
  7417. "url": "https://packagist.com",
  7418. "type": "custom"
  7419. },
  7420. {
  7421. "url": "https://github.com/composer",
  7422. "type": "github"
  7423. },
  7424. {
  7425. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7426. "type": "tidelift"
  7427. }
  7428. ],
  7429. "time": "2021-06-07T13:58:28+00:00"
  7430. },
  7431. {
  7432. "name": "composer/composer",
  7433. "version": "2.1.5",
  7434. "source": {
  7435. "type": "git",
  7436. "url": "https://github.com/composer/composer.git",
  7437. "reference": "ac679902e9f66b85a8f9d8c1c88180f609a8745d"
  7438. },
  7439. "dist": {
  7440. "type": "zip",
  7441. "url": "https://api.github.com/repos/composer/composer/zipball/ac679902e9f66b85a8f9d8c1c88180f609a8745d",
  7442. "reference": "ac679902e9f66b85a8f9d8c1c88180f609a8745d",
  7443. "shasum": "",
  7444. "mirrors": [
  7445. {
  7446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7447. "preferred": true
  7448. }
  7449. ]
  7450. },
  7451. "require": {
  7452. "composer/ca-bundle": "^1.0",
  7453. "composer/metadata-minifier": "^1.0",
  7454. "composer/semver": "^3.0",
  7455. "composer/spdx-licenses": "^1.2",
  7456. "composer/xdebug-handler": "^2.0",
  7457. "justinrainbow/json-schema": "^5.2.11",
  7458. "php": "^5.3.2 || ^7.0 || ^8.0",
  7459. "psr/log": "^1.0",
  7460. "react/promise": "^1.2 || ^2.7",
  7461. "seld/jsonlint": "^1.4",
  7462. "seld/phar-utils": "^1.0",
  7463. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  7464. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  7465. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  7466. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
  7467. },
  7468. "require-dev": {
  7469. "phpspec/prophecy": "^1.10",
  7470. "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
  7471. },
  7472. "suggest": {
  7473. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  7474. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  7475. "ext-zlib": "Allow gzip compression of HTTP requests"
  7476. },
  7477. "bin": [
  7478. "bin/composer"
  7479. ],
  7480. "type": "library",
  7481. "extra": {
  7482. "branch-alias": {
  7483. "dev-master": "2.1-dev"
  7484. }
  7485. },
  7486. "autoload": {
  7487. "psr-4": {
  7488. "Composer\\": "src/Composer"
  7489. }
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "MIT"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Nils Adermann",
  7498. "email": "naderman@naderman.de",
  7499. "homepage": "https://www.naderman.de"
  7500. },
  7501. {
  7502. "name": "Jordi Boggiano",
  7503. "email": "j.boggiano@seld.be",
  7504. "homepage": "https://seld.be"
  7505. }
  7506. ],
  7507. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  7508. "homepage": "https://getcomposer.org/",
  7509. "keywords": [
  7510. "autoload",
  7511. "dependency",
  7512. "package"
  7513. ],
  7514. "support": {
  7515. "irc": "irc://irc.freenode.org/composer",
  7516. "issues": "https://github.com/composer/composer/issues",
  7517. "source": "https://github.com/composer/composer/tree/2.1.5"
  7518. },
  7519. "funding": [
  7520. {
  7521. "url": "https://packagist.com",
  7522. "type": "custom"
  7523. },
  7524. {
  7525. "url": "https://github.com/composer",
  7526. "type": "github"
  7527. },
  7528. {
  7529. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7530. "type": "tidelift"
  7531. }
  7532. ],
  7533. "time": "2021-07-23T08:35:47+00:00"
  7534. },
  7535. {
  7536. "name": "composer/metadata-minifier",
  7537. "version": "1.0.0",
  7538. "source": {
  7539. "type": "git",
  7540. "url": "https://github.com/composer/metadata-minifier.git",
  7541. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  7542. },
  7543. "dist": {
  7544. "type": "zip",
  7545. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  7546. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  7547. "shasum": "",
  7548. "mirrors": [
  7549. {
  7550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7551. "preferred": true
  7552. }
  7553. ]
  7554. },
  7555. "require": {
  7556. "php": "^5.3.2 || ^7.0 || ^8.0"
  7557. },
  7558. "require-dev": {
  7559. "composer/composer": "^2",
  7560. "phpstan/phpstan": "^0.12.55",
  7561. "symfony/phpunit-bridge": "^4.2 || ^5"
  7562. },
  7563. "type": "library",
  7564. "extra": {
  7565. "branch-alias": {
  7566. "dev-main": "1.x-dev"
  7567. }
  7568. },
  7569. "autoload": {
  7570. "psr-4": {
  7571. "Composer\\MetadataMinifier\\": "src"
  7572. }
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Jordi Boggiano",
  7581. "email": "j.boggiano@seld.be",
  7582. "homepage": "http://seld.be"
  7583. }
  7584. ],
  7585. "description": "Small utility library that handles metadata minification and expansion.",
  7586. "keywords": [
  7587. "composer",
  7588. "compression"
  7589. ],
  7590. "support": {
  7591. "issues": "https://github.com/composer/metadata-minifier/issues",
  7592. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  7593. },
  7594. "funding": [
  7595. {
  7596. "url": "https://packagist.com",
  7597. "type": "custom"
  7598. },
  7599. {
  7600. "url": "https://github.com/composer",
  7601. "type": "github"
  7602. },
  7603. {
  7604. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7605. "type": "tidelift"
  7606. }
  7607. ],
  7608. "time": "2021-04-07T13:37:33+00:00"
  7609. },
  7610. {
  7611. "name": "composer/semver",
  7612. "version": "3.2.5",
  7613. "source": {
  7614. "type": "git",
  7615. "url": "https://github.com/composer/semver.git",
  7616. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9"
  7617. },
  7618. "dist": {
  7619. "type": "zip",
  7620. "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9",
  7621. "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9",
  7622. "shasum": "",
  7623. "mirrors": [
  7624. {
  7625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7626. "preferred": true
  7627. }
  7628. ]
  7629. },
  7630. "require": {
  7631. "php": "^5.3.2 || ^7.0 || ^8.0"
  7632. },
  7633. "require-dev": {
  7634. "phpstan/phpstan": "^0.12.54",
  7635. "symfony/phpunit-bridge": "^4.2 || ^5"
  7636. },
  7637. "type": "library",
  7638. "extra": {
  7639. "branch-alias": {
  7640. "dev-main": "3.x-dev"
  7641. }
  7642. },
  7643. "autoload": {
  7644. "psr-4": {
  7645. "Composer\\Semver\\": "src"
  7646. }
  7647. },
  7648. "notification-url": "https://packagist.org/downloads/",
  7649. "license": [
  7650. "MIT"
  7651. ],
  7652. "authors": [
  7653. {
  7654. "name": "Nils Adermann",
  7655. "email": "naderman@naderman.de",
  7656. "homepage": "http://www.naderman.de"
  7657. },
  7658. {
  7659. "name": "Jordi Boggiano",
  7660. "email": "j.boggiano@seld.be",
  7661. "homepage": "http://seld.be"
  7662. },
  7663. {
  7664. "name": "Rob Bast",
  7665. "email": "rob.bast@gmail.com",
  7666. "homepage": "http://robbast.nl"
  7667. }
  7668. ],
  7669. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7670. "keywords": [
  7671. "semantic",
  7672. "semver",
  7673. "validation",
  7674. "versioning"
  7675. ],
  7676. "support": {
  7677. "irc": "irc://irc.freenode.org/composer",
  7678. "issues": "https://github.com/composer/semver/issues",
  7679. "source": "https://github.com/composer/semver/tree/3.2.5"
  7680. },
  7681. "funding": [
  7682. {
  7683. "url": "https://packagist.com",
  7684. "type": "custom"
  7685. },
  7686. {
  7687. "url": "https://github.com/composer",
  7688. "type": "github"
  7689. },
  7690. {
  7691. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7692. "type": "tidelift"
  7693. }
  7694. ],
  7695. "time": "2021-05-24T12:41:47+00:00"
  7696. },
  7697. {
  7698. "name": "composer/spdx-licenses",
  7699. "version": "1.5.5",
  7700. "source": {
  7701. "type": "git",
  7702. "url": "https://github.com/composer/spdx-licenses.git",
  7703. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  7704. },
  7705. "dist": {
  7706. "type": "zip",
  7707. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  7708. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  7709. "shasum": "",
  7710. "mirrors": [
  7711. {
  7712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7713. "preferred": true
  7714. }
  7715. ]
  7716. },
  7717. "require": {
  7718. "php": "^5.3.2 || ^7.0 || ^8.0"
  7719. },
  7720. "require-dev": {
  7721. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  7722. },
  7723. "type": "library",
  7724. "extra": {
  7725. "branch-alias": {
  7726. "dev-main": "1.x-dev"
  7727. }
  7728. },
  7729. "autoload": {
  7730. "psr-4": {
  7731. "Composer\\Spdx\\": "src"
  7732. }
  7733. },
  7734. "notification-url": "https://packagist.org/downloads/",
  7735. "license": [
  7736. "MIT"
  7737. ],
  7738. "authors": [
  7739. {
  7740. "name": "Nils Adermann",
  7741. "email": "naderman@naderman.de",
  7742. "homepage": "http://www.naderman.de"
  7743. },
  7744. {
  7745. "name": "Jordi Boggiano",
  7746. "email": "j.boggiano@seld.be",
  7747. "homepage": "http://seld.be"
  7748. },
  7749. {
  7750. "name": "Rob Bast",
  7751. "email": "rob.bast@gmail.com",
  7752. "homepage": "http://robbast.nl"
  7753. }
  7754. ],
  7755. "description": "SPDX licenses list and validation library.",
  7756. "keywords": [
  7757. "license",
  7758. "spdx",
  7759. "validator"
  7760. ],
  7761. "support": {
  7762. "irc": "irc://irc.freenode.org/composer",
  7763. "issues": "https://github.com/composer/spdx-licenses/issues",
  7764. "source": "https://github.com/composer/spdx-licenses/tree/1.5.5"
  7765. },
  7766. "funding": [
  7767. {
  7768. "url": "https://packagist.com",
  7769. "type": "custom"
  7770. },
  7771. {
  7772. "url": "https://github.com/composer",
  7773. "type": "github"
  7774. },
  7775. {
  7776. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7777. "type": "tidelift"
  7778. }
  7779. ],
  7780. "time": "2020-12-03T16:04:16+00:00"
  7781. },
  7782. {
  7783. "name": "composer/xdebug-handler",
  7784. "version": "2.0.2",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://github.com/composer/xdebug-handler.git",
  7788. "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/84674dd3a7575ba617f5a76d7e9e29a7d3891339",
  7793. "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339",
  7794. "shasum": "",
  7795. "mirrors": [
  7796. {
  7797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7798. "preferred": true
  7799. }
  7800. ]
  7801. },
  7802. "require": {
  7803. "php": "^5.3.2 || ^7.0 || ^8.0",
  7804. "psr/log": "^1 || ^2 || ^3"
  7805. },
  7806. "require-dev": {
  7807. "phpstan/phpstan": "^0.12.55",
  7808. "symfony/phpunit-bridge": "^4.2 || ^5"
  7809. },
  7810. "type": "library",
  7811. "autoload": {
  7812. "psr-4": {
  7813. "Composer\\XdebugHandler\\": "src"
  7814. }
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "MIT"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "John Stevenson",
  7823. "email": "john-stevenson@blueyonder.co.uk"
  7824. }
  7825. ],
  7826. "description": "Restarts a process without Xdebug.",
  7827. "keywords": [
  7828. "Xdebug",
  7829. "performance"
  7830. ],
  7831. "support": {
  7832. "irc": "irc://irc.freenode.org/composer",
  7833. "issues": "https://github.com/composer/xdebug-handler/issues",
  7834. "source": "https://github.com/composer/xdebug-handler/tree/2.0.2"
  7835. },
  7836. "funding": [
  7837. {
  7838. "url": "https://packagist.com",
  7839. "type": "custom"
  7840. },
  7841. {
  7842. "url": "https://github.com/composer",
  7843. "type": "github"
  7844. },
  7845. {
  7846. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7847. "type": "tidelift"
  7848. }
  7849. ],
  7850. "time": "2021-07-31T17:03:58+00:00"
  7851. },
  7852. {
  7853. "name": "doctrine/instantiator",
  7854. "version": "1.4.0",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://github.com/doctrine/instantiator.git",
  7858. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7863. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  7864. "shasum": "",
  7865. "mirrors": [
  7866. {
  7867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7868. "preferred": true
  7869. }
  7870. ]
  7871. },
  7872. "require": {
  7873. "php": "^7.1 || ^8.0"
  7874. },
  7875. "require-dev": {
  7876. "doctrine/coding-standard": "^8.0",
  7877. "ext-pdo": "*",
  7878. "ext-phar": "*",
  7879. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  7880. "phpstan/phpstan": "^0.12",
  7881. "phpstan/phpstan-phpunit": "^0.12",
  7882. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7883. },
  7884. "type": "library",
  7885. "autoload": {
  7886. "psr-4": {
  7887. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7888. }
  7889. },
  7890. "notification-url": "https://packagist.org/downloads/",
  7891. "license": [
  7892. "MIT"
  7893. ],
  7894. "authors": [
  7895. {
  7896. "name": "Marco Pivetta",
  7897. "email": "ocramius@gmail.com",
  7898. "homepage": "https://ocramius.github.io/"
  7899. }
  7900. ],
  7901. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7902. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7903. "keywords": [
  7904. "constructor",
  7905. "instantiate"
  7906. ],
  7907. "time": "2020-11-10T18:47:58+00:00"
  7908. },
  7909. {
  7910. "name": "facade/flare-client-php",
  7911. "version": "1.8.1",
  7912. "source": {
  7913. "type": "git",
  7914. "url": "https://github.com/facade/flare-client-php.git",
  7915. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  7916. },
  7917. "dist": {
  7918. "type": "zip",
  7919. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  7920. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  7921. "shasum": "",
  7922. "mirrors": [
  7923. {
  7924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7925. "preferred": true
  7926. }
  7927. ]
  7928. },
  7929. "require": {
  7930. "facade/ignition-contracts": "~1.0",
  7931. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7932. "php": "^7.1|^8.0",
  7933. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7934. "symfony/mime": "^3.4|^4.0|^5.1",
  7935. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7936. },
  7937. "require-dev": {
  7938. "friendsofphp/php-cs-fixer": "^2.14",
  7939. "phpunit/phpunit": "^7.5.16",
  7940. "spatie/phpunit-snapshot-assertions": "^2.0"
  7941. },
  7942. "type": "library",
  7943. "extra": {
  7944. "branch-alias": {
  7945. "dev-master": "1.0-dev"
  7946. }
  7947. },
  7948. "autoload": {
  7949. "psr-4": {
  7950. "Facade\\FlareClient\\": "src"
  7951. },
  7952. "files": [
  7953. "src/helpers.php"
  7954. ]
  7955. },
  7956. "notification-url": "https://packagist.org/downloads/",
  7957. "license": [
  7958. "MIT"
  7959. ],
  7960. "description": "Send PHP errors to Flare",
  7961. "homepage": "https://github.com/facade/flare-client-php",
  7962. "keywords": [
  7963. "exception",
  7964. "facade",
  7965. "flare",
  7966. "reporting"
  7967. ],
  7968. "time": "2021-05-31T19:23:29+00:00"
  7969. },
  7970. {
  7971. "name": "facade/ignition",
  7972. "version": "2.11.2",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/facade/ignition.git",
  7976. "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/facade/ignition/zipball/7c4e7a7da184cd00c7ce6eacc590200bb9672de7",
  7981. "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7",
  7982. "shasum": "",
  7983. "mirrors": [
  7984. {
  7985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7986. "preferred": true
  7987. }
  7988. ]
  7989. },
  7990. "require": {
  7991. "ext-json": "*",
  7992. "ext-mbstring": "*",
  7993. "facade/flare-client-php": "^1.6",
  7994. "facade/ignition-contracts": "^1.0.2",
  7995. "illuminate/support": "^7.0|^8.0",
  7996. "monolog/monolog": "^2.0",
  7997. "php": "^7.2.5|^8.0",
  7998. "symfony/console": "^5.0",
  7999. "symfony/var-dumper": "^5.0"
  8000. },
  8001. "require-dev": {
  8002. "friendsofphp/php-cs-fixer": "^2.14",
  8003. "mockery/mockery": "^1.3",
  8004. "orchestra/testbench": "^5.0|^6.0",
  8005. "psalm/plugin-laravel": "^1.2"
  8006. },
  8007. "suggest": {
  8008. "laravel/telescope": "^3.1"
  8009. },
  8010. "type": "library",
  8011. "extra": {
  8012. "branch-alias": {
  8013. "dev-master": "2.x-dev"
  8014. },
  8015. "laravel": {
  8016. "providers": [
  8017. "Facade\\Ignition\\IgnitionServiceProvider"
  8018. ],
  8019. "aliases": {
  8020. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8021. }
  8022. }
  8023. },
  8024. "autoload": {
  8025. "psr-4": {
  8026. "Facade\\Ignition\\": "src"
  8027. },
  8028. "files": [
  8029. "src/helpers.php"
  8030. ]
  8031. },
  8032. "notification-url": "https://packagist.org/downloads/",
  8033. "license": [
  8034. "MIT"
  8035. ],
  8036. "description": "A beautiful error page for Laravel applications.",
  8037. "homepage": "https://github.com/facade/ignition",
  8038. "keywords": [
  8039. "error",
  8040. "flare",
  8041. "laravel",
  8042. "page"
  8043. ],
  8044. "time": "2021-07-20T14:01:22+00:00"
  8045. },
  8046. {
  8047. "name": "facade/ignition-contracts",
  8048. "version": "1.0.2",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/facade/ignition-contracts.git",
  8052. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8057. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8058. "shasum": "",
  8059. "mirrors": [
  8060. {
  8061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8062. "preferred": true
  8063. }
  8064. ]
  8065. },
  8066. "require": {
  8067. "php": "^7.3|^8.0"
  8068. },
  8069. "require-dev": {
  8070. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8071. "phpunit/phpunit": "^9.3.11",
  8072. "vimeo/psalm": "^3.17.1"
  8073. },
  8074. "type": "library",
  8075. "autoload": {
  8076. "psr-4": {
  8077. "Facade\\IgnitionContracts\\": "src"
  8078. }
  8079. },
  8080. "notification-url": "https://packagist.org/downloads/",
  8081. "license": [
  8082. "MIT"
  8083. ],
  8084. "authors": [
  8085. {
  8086. "name": "Freek Van der Herten",
  8087. "email": "freek@spatie.be",
  8088. "homepage": "https://flareapp.io",
  8089. "role": "Developer"
  8090. }
  8091. ],
  8092. "description": "Solution contracts for Ignition",
  8093. "homepage": "https://github.com/facade/ignition-contracts",
  8094. "keywords": [
  8095. "contracts",
  8096. "flare",
  8097. "ignition"
  8098. ],
  8099. "time": "2020-10-16T08:27:54+00:00"
  8100. },
  8101. {
  8102. "name": "fakerphp/faker",
  8103. "version": "v1.15.0",
  8104. "source": {
  8105. "type": "git",
  8106. "url": "https://github.com/FakerPHP/Faker.git",
  8107. "reference": "89c6201c74db25fa759ff16e78a4d8f32547770e"
  8108. },
  8109. "dist": {
  8110. "type": "zip",
  8111. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/89c6201c74db25fa759ff16e78a4d8f32547770e",
  8112. "reference": "89c6201c74db25fa759ff16e78a4d8f32547770e",
  8113. "shasum": "",
  8114. "mirrors": [
  8115. {
  8116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8117. "preferred": true
  8118. }
  8119. ]
  8120. },
  8121. "require": {
  8122. "php": "^7.1 || ^8.0",
  8123. "psr/container": "^1.0",
  8124. "symfony/deprecation-contracts": "^2.2"
  8125. },
  8126. "conflict": {
  8127. "fzaninotto/faker": "*"
  8128. },
  8129. "require-dev": {
  8130. "bamarni/composer-bin-plugin": "^1.4.1",
  8131. "ext-intl": "*",
  8132. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  8133. },
  8134. "suggest": {
  8135. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8136. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8137. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8138. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8139. },
  8140. "type": "library",
  8141. "extra": {
  8142. "branch-alias": {
  8143. "dev-main": "v1.15-dev"
  8144. }
  8145. },
  8146. "autoload": {
  8147. "psr-4": {
  8148. "Faker\\": "src/Faker/"
  8149. }
  8150. },
  8151. "notification-url": "https://packagist.org/downloads/",
  8152. "license": [
  8153. "MIT"
  8154. ],
  8155. "authors": [
  8156. {
  8157. "name": "François Zaninotto"
  8158. }
  8159. ],
  8160. "description": "Faker is a PHP library that generates fake data for you.",
  8161. "keywords": [
  8162. "data",
  8163. "faker",
  8164. "fixtures"
  8165. ],
  8166. "time": "2021-07-06T20:39:40+00:00"
  8167. },
  8168. {
  8169. "name": "filp/whoops",
  8170. "version": "2.14.0",
  8171. "source": {
  8172. "type": "git",
  8173. "url": "https://github.com/filp/whoops.git",
  8174. "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b"
  8175. },
  8176. "dist": {
  8177. "type": "zip",
  8178. "url": "https://api.github.com/repos/filp/whoops/zipball/fdf92f03e150ed84d5967a833ae93abffac0315b",
  8179. "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b",
  8180. "shasum": "",
  8181. "mirrors": [
  8182. {
  8183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8184. "preferred": true
  8185. }
  8186. ]
  8187. },
  8188. "require": {
  8189. "php": "^5.5.9 || ^7.0 || ^8.0",
  8190. "psr/log": "^1.0.1"
  8191. },
  8192. "require-dev": {
  8193. "mockery/mockery": "^0.9 || ^1.0",
  8194. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8195. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8196. },
  8197. "suggest": {
  8198. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8199. "whoops/soap": "Formats errors as SOAP responses"
  8200. },
  8201. "type": "library",
  8202. "extra": {
  8203. "branch-alias": {
  8204. "dev-master": "2.7-dev"
  8205. }
  8206. },
  8207. "autoload": {
  8208. "psr-4": {
  8209. "Whoops\\": "src/Whoops/"
  8210. }
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "authors": [
  8217. {
  8218. "name": "Filipe Dobreira",
  8219. "homepage": "https://github.com/filp",
  8220. "role": "Developer"
  8221. }
  8222. ],
  8223. "description": "php error handling for cool kids",
  8224. "homepage": "https://filp.github.io/whoops/",
  8225. "keywords": [
  8226. "error",
  8227. "exception",
  8228. "handling",
  8229. "library",
  8230. "throwable",
  8231. "whoops"
  8232. ],
  8233. "time": "2021-07-13T12:00:00+00:00"
  8234. },
  8235. {
  8236. "name": "hamcrest/hamcrest-php",
  8237. "version": "v2.0.1",
  8238. "source": {
  8239. "type": "git",
  8240. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8241. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8242. },
  8243. "dist": {
  8244. "type": "zip",
  8245. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8246. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8247. "shasum": "",
  8248. "mirrors": [
  8249. {
  8250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8251. "preferred": true
  8252. }
  8253. ]
  8254. },
  8255. "require": {
  8256. "php": "^5.3|^7.0|^8.0"
  8257. },
  8258. "replace": {
  8259. "cordoval/hamcrest-php": "*",
  8260. "davedevelopment/hamcrest-php": "*",
  8261. "kodova/hamcrest-php": "*"
  8262. },
  8263. "require-dev": {
  8264. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8265. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8266. },
  8267. "type": "library",
  8268. "extra": {
  8269. "branch-alias": {
  8270. "dev-master": "2.1-dev"
  8271. }
  8272. },
  8273. "autoload": {
  8274. "classmap": [
  8275. "hamcrest"
  8276. ]
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "BSD-3-Clause"
  8281. ],
  8282. "description": "This is the PHP port of Hamcrest Matchers",
  8283. "keywords": [
  8284. "test"
  8285. ],
  8286. "time": "2020-07-09T08:09:16+00:00"
  8287. },
  8288. {
  8289. "name": "justinrainbow/json-schema",
  8290. "version": "5.2.11",
  8291. "source": {
  8292. "type": "git",
  8293. "url": "https://github.com/justinrainbow/json-schema.git",
  8294. "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa"
  8295. },
  8296. "dist": {
  8297. "type": "zip",
  8298. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa",
  8299. "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa",
  8300. "shasum": "",
  8301. "mirrors": [
  8302. {
  8303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8304. "preferred": true
  8305. }
  8306. ]
  8307. },
  8308. "require": {
  8309. "php": ">=5.3.3"
  8310. },
  8311. "require-dev": {
  8312. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  8313. "json-schema/json-schema-test-suite": "1.2.0",
  8314. "phpunit/phpunit": "^4.8.35"
  8315. },
  8316. "bin": [
  8317. "bin/validate-json"
  8318. ],
  8319. "type": "library",
  8320. "extra": {
  8321. "branch-alias": {
  8322. "dev-master": "5.0.x-dev"
  8323. }
  8324. },
  8325. "autoload": {
  8326. "psr-4": {
  8327. "JsonSchema\\": "src/JsonSchema/"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Bruno Prieto Reis",
  8337. "email": "bruno.p.reis@gmail.com"
  8338. },
  8339. {
  8340. "name": "Justin Rainbow",
  8341. "email": "justin.rainbow@gmail.com"
  8342. },
  8343. {
  8344. "name": "Igor Wiedler",
  8345. "email": "igor@wiedler.ch"
  8346. },
  8347. {
  8348. "name": "Robert Schönthal",
  8349. "email": "seroscho@googlemail.com"
  8350. }
  8351. ],
  8352. "description": "A library to validate a json schema.",
  8353. "homepage": "https://github.com/justinrainbow/json-schema",
  8354. "keywords": [
  8355. "json",
  8356. "schema"
  8357. ],
  8358. "support": {
  8359. "issues": "https://github.com/justinrainbow/json-schema/issues",
  8360. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11"
  8361. },
  8362. "time": "2021-07-22T09:24:00+00:00"
  8363. },
  8364. {
  8365. "name": "laravel/sail",
  8366. "version": "v1.9.0",
  8367. "source": {
  8368. "type": "git",
  8369. "url": "https://github.com/laravel/sail.git",
  8370. "reference": "3e1aa8679b10ae9210eebfbc2ee5f3600f356702"
  8371. },
  8372. "dist": {
  8373. "type": "zip",
  8374. "url": "https://api.github.com/repos/laravel/sail/zipball/3e1aa8679b10ae9210eebfbc2ee5f3600f356702",
  8375. "reference": "3e1aa8679b10ae9210eebfbc2ee5f3600f356702",
  8376. "shasum": "",
  8377. "mirrors": [
  8378. {
  8379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8380. "preferred": true
  8381. }
  8382. ]
  8383. },
  8384. "require": {
  8385. "illuminate/console": "^8.0|^9.0",
  8386. "illuminate/contracts": "^8.0|^9.0",
  8387. "illuminate/support": "^8.0|^9.0",
  8388. "php": "^7.3|^8.0"
  8389. },
  8390. "bin": [
  8391. "bin/sail"
  8392. ],
  8393. "type": "library",
  8394. "extra": {
  8395. "branch-alias": {
  8396. "dev-master": "1.x-dev"
  8397. },
  8398. "laravel": {
  8399. "providers": [
  8400. "Laravel\\Sail\\SailServiceProvider"
  8401. ]
  8402. }
  8403. },
  8404. "autoload": {
  8405. "psr-4": {
  8406. "Laravel\\Sail\\": "src/"
  8407. }
  8408. },
  8409. "notification-url": "https://packagist.org/downloads/",
  8410. "license": [
  8411. "MIT"
  8412. ],
  8413. "authors": [
  8414. {
  8415. "name": "Taylor Otwell",
  8416. "email": "taylor@laravel.com"
  8417. }
  8418. ],
  8419. "description": "Docker files for running a basic Laravel application.",
  8420. "keywords": [
  8421. "docker",
  8422. "laravel"
  8423. ],
  8424. "time": "2021-08-03T18:51:44+00:00"
  8425. },
  8426. {
  8427. "name": "mockery/mockery",
  8428. "version": "1.4.3",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/mockery/mockery.git",
  8432. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8437. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8438. "shasum": "",
  8439. "mirrors": [
  8440. {
  8441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8442. "preferred": true
  8443. }
  8444. ]
  8445. },
  8446. "require": {
  8447. "hamcrest/hamcrest-php": "^2.0.1",
  8448. "lib-pcre": ">=7.0",
  8449. "php": "^7.3 || ^8.0"
  8450. },
  8451. "conflict": {
  8452. "phpunit/phpunit": "<8.0"
  8453. },
  8454. "require-dev": {
  8455. "phpunit/phpunit": "^8.5 || ^9.3"
  8456. },
  8457. "type": "library",
  8458. "extra": {
  8459. "branch-alias": {
  8460. "dev-master": "1.4.x-dev"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "psr-0": {
  8465. "Mockery": "library/"
  8466. }
  8467. },
  8468. "notification-url": "https://packagist.org/downloads/",
  8469. "license": [
  8470. "BSD-3-Clause"
  8471. ],
  8472. "authors": [
  8473. {
  8474. "name": "Pádraic Brady",
  8475. "email": "padraic.brady@gmail.com",
  8476. "homepage": "http://blog.astrumfutura.com"
  8477. },
  8478. {
  8479. "name": "Dave Marshall",
  8480. "email": "dave.marshall@atstsolutions.co.uk",
  8481. "homepage": "http://davedevelopment.co.uk"
  8482. }
  8483. ],
  8484. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8485. "homepage": "https://github.com/mockery/mockery",
  8486. "keywords": [
  8487. "BDD",
  8488. "TDD",
  8489. "library",
  8490. "mock",
  8491. "mock objects",
  8492. "mockery",
  8493. "stub",
  8494. "test",
  8495. "test double",
  8496. "testing"
  8497. ],
  8498. "time": "2021-02-24T09:51:49+00:00"
  8499. },
  8500. {
  8501. "name": "myclabs/deep-copy",
  8502. "version": "1.10.2",
  8503. "source": {
  8504. "type": "git",
  8505. "url": "https://github.com/myclabs/DeepCopy.git",
  8506. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8507. },
  8508. "dist": {
  8509. "type": "zip",
  8510. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8511. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8512. "shasum": "",
  8513. "mirrors": [
  8514. {
  8515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8516. "preferred": true
  8517. }
  8518. ]
  8519. },
  8520. "require": {
  8521. "php": "^7.1 || ^8.0"
  8522. },
  8523. "replace": {
  8524. "myclabs/deep-copy": "self.version"
  8525. },
  8526. "require-dev": {
  8527. "doctrine/collections": "^1.0",
  8528. "doctrine/common": "^2.6",
  8529. "phpunit/phpunit": "^7.1"
  8530. },
  8531. "type": "library",
  8532. "autoload": {
  8533. "psr-4": {
  8534. "DeepCopy\\": "src/DeepCopy/"
  8535. },
  8536. "files": [
  8537. "src/DeepCopy/deep_copy.php"
  8538. ]
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "description": "Create deep copies (clones) of your objects",
  8545. "keywords": [
  8546. "clone",
  8547. "copy",
  8548. "duplicate",
  8549. "object",
  8550. "object graph"
  8551. ],
  8552. "time": "2020-11-13T09:40:50+00:00"
  8553. },
  8554. {
  8555. "name": "nunomaduro/collision",
  8556. "version": "v5.6.0",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/nunomaduro/collision.git",
  8560. "reference": "0122ac6b03c75279ef78d1c0ad49725dfc52a8d2"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0122ac6b03c75279ef78d1c0ad49725dfc52a8d2",
  8565. "reference": "0122ac6b03c75279ef78d1c0ad49725dfc52a8d2",
  8566. "shasum": "",
  8567. "mirrors": [
  8568. {
  8569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8570. "preferred": true
  8571. }
  8572. ]
  8573. },
  8574. "require": {
  8575. "facade/ignition-contracts": "^1.0",
  8576. "filp/whoops": "^2.7.2",
  8577. "php": "^7.3 || ^8.0",
  8578. "symfony/console": "^5.0"
  8579. },
  8580. "require-dev": {
  8581. "brianium/paratest": "^6.1",
  8582. "fideloper/proxy": "^4.4.1",
  8583. "friendsofphp/php-cs-fixer": "^2.17.3",
  8584. "fruitcake/laravel-cors": "^2.0.3",
  8585. "laravel/framework": "^8.0 || ^9.0",
  8586. "nunomaduro/larastan": "^0.6.2",
  8587. "nunomaduro/mock-final-classes": "^1.0",
  8588. "orchestra/testbench": "^6.0 || ^7.0",
  8589. "phpstan/phpstan": "^0.12.64",
  8590. "phpunit/phpunit": "^9.5.0"
  8591. },
  8592. "type": "library",
  8593. "extra": {
  8594. "laravel": {
  8595. "providers": [
  8596. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8597. ]
  8598. }
  8599. },
  8600. "autoload": {
  8601. "psr-4": {
  8602. "NunoMaduro\\Collision\\": "src/"
  8603. }
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "license": [
  8607. "MIT"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Nuno Maduro",
  8612. "email": "enunomaduro@gmail.com"
  8613. }
  8614. ],
  8615. "description": "Cli error handling for console/command-line PHP applications.",
  8616. "keywords": [
  8617. "artisan",
  8618. "cli",
  8619. "command-line",
  8620. "console",
  8621. "error",
  8622. "handling",
  8623. "laravel",
  8624. "laravel-zero",
  8625. "php",
  8626. "symfony"
  8627. ],
  8628. "time": "2021-07-26T20:39:06+00:00"
  8629. },
  8630. {
  8631. "name": "phar-io/manifest",
  8632. "version": "2.0.3",
  8633. "source": {
  8634. "type": "git",
  8635. "url": "https://github.com/phar-io/manifest.git",
  8636. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8637. },
  8638. "dist": {
  8639. "type": "zip",
  8640. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8641. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8642. "shasum": "",
  8643. "mirrors": [
  8644. {
  8645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8646. "preferred": true
  8647. }
  8648. ]
  8649. },
  8650. "require": {
  8651. "ext-dom": "*",
  8652. "ext-phar": "*",
  8653. "ext-xmlwriter": "*",
  8654. "phar-io/version": "^3.0.1",
  8655. "php": "^7.2 || ^8.0"
  8656. },
  8657. "type": "library",
  8658. "extra": {
  8659. "branch-alias": {
  8660. "dev-master": "2.0.x-dev"
  8661. }
  8662. },
  8663. "autoload": {
  8664. "classmap": [
  8665. "src/"
  8666. ]
  8667. },
  8668. "notification-url": "https://packagist.org/downloads/",
  8669. "license": [
  8670. "BSD-3-Clause"
  8671. ],
  8672. "authors": [
  8673. {
  8674. "name": "Arne Blankerts",
  8675. "email": "arne@blankerts.de",
  8676. "role": "Developer"
  8677. },
  8678. {
  8679. "name": "Sebastian Heuer",
  8680. "email": "sebastian@phpeople.de",
  8681. "role": "Developer"
  8682. },
  8683. {
  8684. "name": "Sebastian Bergmann",
  8685. "email": "sebastian@phpunit.de",
  8686. "role": "Developer"
  8687. }
  8688. ],
  8689. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8690. "time": "2021-07-20T11:28:43+00:00"
  8691. },
  8692. {
  8693. "name": "phar-io/version",
  8694. "version": "3.1.0",
  8695. "source": {
  8696. "type": "git",
  8697. "url": "https://github.com/phar-io/version.git",
  8698. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8699. },
  8700. "dist": {
  8701. "type": "zip",
  8702. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8703. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8704. "shasum": "",
  8705. "mirrors": [
  8706. {
  8707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8708. "preferred": true
  8709. }
  8710. ]
  8711. },
  8712. "require": {
  8713. "php": "^7.2 || ^8.0"
  8714. },
  8715. "type": "library",
  8716. "autoload": {
  8717. "classmap": [
  8718. "src/"
  8719. ]
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "BSD-3-Clause"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Arne Blankerts",
  8728. "email": "arne@blankerts.de",
  8729. "role": "Developer"
  8730. },
  8731. {
  8732. "name": "Sebastian Heuer",
  8733. "email": "sebastian@phpeople.de",
  8734. "role": "Developer"
  8735. },
  8736. {
  8737. "name": "Sebastian Bergmann",
  8738. "email": "sebastian@phpunit.de",
  8739. "role": "Developer"
  8740. }
  8741. ],
  8742. "description": "Library for handling version information and constraints",
  8743. "time": "2021-02-23T14:00:09+00:00"
  8744. },
  8745. {
  8746. "name": "phpspec/prophecy",
  8747. "version": "1.13.0",
  8748. "source": {
  8749. "type": "git",
  8750. "url": "https://github.com/phpspec/prophecy.git",
  8751. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8752. },
  8753. "dist": {
  8754. "type": "zip",
  8755. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8756. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8757. "shasum": "",
  8758. "mirrors": [
  8759. {
  8760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8761. "preferred": true
  8762. }
  8763. ]
  8764. },
  8765. "require": {
  8766. "doctrine/instantiator": "^1.2",
  8767. "php": "^7.2 || ~8.0, <8.1",
  8768. "phpdocumentor/reflection-docblock": "^5.2",
  8769. "sebastian/comparator": "^3.0 || ^4.0",
  8770. "sebastian/recursion-context": "^3.0 || ^4.0"
  8771. },
  8772. "require-dev": {
  8773. "phpspec/phpspec": "^6.0",
  8774. "phpunit/phpunit": "^8.0 || ^9.0"
  8775. },
  8776. "type": "library",
  8777. "extra": {
  8778. "branch-alias": {
  8779. "dev-master": "1.11.x-dev"
  8780. }
  8781. },
  8782. "autoload": {
  8783. "psr-4": {
  8784. "Prophecy\\": "src/Prophecy"
  8785. }
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "MIT"
  8790. ],
  8791. "authors": [
  8792. {
  8793. "name": "Konstantin Kudryashov",
  8794. "email": "ever.zet@gmail.com",
  8795. "homepage": "http://everzet.com"
  8796. },
  8797. {
  8798. "name": "Marcello Duarte",
  8799. "email": "marcello.duarte@gmail.com"
  8800. }
  8801. ],
  8802. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8803. "homepage": "https://github.com/phpspec/prophecy",
  8804. "keywords": [
  8805. "Double",
  8806. "Dummy",
  8807. "fake",
  8808. "mock",
  8809. "spy",
  8810. "stub"
  8811. ],
  8812. "time": "2021-03-17T13:42:18+00:00"
  8813. },
  8814. {
  8815. "name": "phpunit/php-code-coverage",
  8816. "version": "9.2.6",
  8817. "source": {
  8818. "type": "git",
  8819. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8820. "reference": "f6293e1b30a2354e8428e004689671b83871edde"
  8821. },
  8822. "dist": {
  8823. "type": "zip",
  8824. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
  8825. "reference": "f6293e1b30a2354e8428e004689671b83871edde",
  8826. "shasum": "",
  8827. "mirrors": [
  8828. {
  8829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8830. "preferred": true
  8831. }
  8832. ]
  8833. },
  8834. "require": {
  8835. "ext-dom": "*",
  8836. "ext-libxml": "*",
  8837. "ext-xmlwriter": "*",
  8838. "nikic/php-parser": "^4.10.2",
  8839. "php": ">=7.3",
  8840. "phpunit/php-file-iterator": "^3.0.3",
  8841. "phpunit/php-text-template": "^2.0.2",
  8842. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8843. "sebastian/complexity": "^2.0",
  8844. "sebastian/environment": "^5.1.2",
  8845. "sebastian/lines-of-code": "^1.0.3",
  8846. "sebastian/version": "^3.0.1",
  8847. "theseer/tokenizer": "^1.2.0"
  8848. },
  8849. "require-dev": {
  8850. "phpunit/phpunit": "^9.3"
  8851. },
  8852. "suggest": {
  8853. "ext-pcov": "*",
  8854. "ext-xdebug": "*"
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-master": "9.2-dev"
  8860. }
  8861. },
  8862. "autoload": {
  8863. "classmap": [
  8864. "src/"
  8865. ]
  8866. },
  8867. "notification-url": "https://packagist.org/downloads/",
  8868. "license": [
  8869. "BSD-3-Clause"
  8870. ],
  8871. "authors": [
  8872. {
  8873. "name": "Sebastian Bergmann",
  8874. "email": "sebastian@phpunit.de",
  8875. "role": "lead"
  8876. }
  8877. ],
  8878. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8879. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8880. "keywords": [
  8881. "coverage",
  8882. "testing",
  8883. "xunit"
  8884. ],
  8885. "time": "2021-03-28T07:26:59+00:00"
  8886. },
  8887. {
  8888. "name": "phpunit/php-file-iterator",
  8889. "version": "3.0.5",
  8890. "source": {
  8891. "type": "git",
  8892. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8893. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  8894. },
  8895. "dist": {
  8896. "type": "zip",
  8897. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  8898. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  8899. "shasum": "",
  8900. "mirrors": [
  8901. {
  8902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8903. "preferred": true
  8904. }
  8905. ]
  8906. },
  8907. "require": {
  8908. "php": ">=7.3"
  8909. },
  8910. "require-dev": {
  8911. "phpunit/phpunit": "^9.3"
  8912. },
  8913. "type": "library",
  8914. "extra": {
  8915. "branch-alias": {
  8916. "dev-master": "3.0-dev"
  8917. }
  8918. },
  8919. "autoload": {
  8920. "classmap": [
  8921. "src/"
  8922. ]
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "BSD-3-Clause"
  8927. ],
  8928. "authors": [
  8929. {
  8930. "name": "Sebastian Bergmann",
  8931. "email": "sebastian@phpunit.de",
  8932. "role": "lead"
  8933. }
  8934. ],
  8935. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8936. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8937. "keywords": [
  8938. "filesystem",
  8939. "iterator"
  8940. ],
  8941. "time": "2020-09-28T05:57:25+00:00"
  8942. },
  8943. {
  8944. "name": "phpunit/php-invoker",
  8945. "version": "3.1.1",
  8946. "source": {
  8947. "type": "git",
  8948. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8949. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8950. },
  8951. "dist": {
  8952. "type": "zip",
  8953. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8954. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8955. "shasum": "",
  8956. "mirrors": [
  8957. {
  8958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8959. "preferred": true
  8960. }
  8961. ]
  8962. },
  8963. "require": {
  8964. "php": ">=7.3"
  8965. },
  8966. "require-dev": {
  8967. "ext-pcntl": "*",
  8968. "phpunit/phpunit": "^9.3"
  8969. },
  8970. "suggest": {
  8971. "ext-pcntl": "*"
  8972. },
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-master": "3.1-dev"
  8977. }
  8978. },
  8979. "autoload": {
  8980. "classmap": [
  8981. "src/"
  8982. ]
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "BSD-3-Clause"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "Sebastian Bergmann",
  8991. "email": "sebastian@phpunit.de",
  8992. "role": "lead"
  8993. }
  8994. ],
  8995. "description": "Invoke callables with a timeout",
  8996. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8997. "keywords": [
  8998. "process"
  8999. ],
  9000. "time": "2020-09-28T05:58:55+00:00"
  9001. },
  9002. {
  9003. "name": "phpunit/php-text-template",
  9004. "version": "2.0.4",
  9005. "source": {
  9006. "type": "git",
  9007. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9008. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9009. },
  9010. "dist": {
  9011. "type": "zip",
  9012. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9013. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9014. "shasum": "",
  9015. "mirrors": [
  9016. {
  9017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9018. "preferred": true
  9019. }
  9020. ]
  9021. },
  9022. "require": {
  9023. "php": ">=7.3"
  9024. },
  9025. "require-dev": {
  9026. "phpunit/phpunit": "^9.3"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "branch-alias": {
  9031. "dev-master": "2.0-dev"
  9032. }
  9033. },
  9034. "autoload": {
  9035. "classmap": [
  9036. "src/"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "BSD-3-Clause"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Sebastian Bergmann",
  9046. "email": "sebastian@phpunit.de",
  9047. "role": "lead"
  9048. }
  9049. ],
  9050. "description": "Simple template engine.",
  9051. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9052. "keywords": [
  9053. "template"
  9054. ],
  9055. "time": "2020-10-26T05:33:50+00:00"
  9056. },
  9057. {
  9058. "name": "phpunit/php-timer",
  9059. "version": "5.0.3",
  9060. "source": {
  9061. "type": "git",
  9062. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9063. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9064. },
  9065. "dist": {
  9066. "type": "zip",
  9067. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9068. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9069. "shasum": "",
  9070. "mirrors": [
  9071. {
  9072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9073. "preferred": true
  9074. }
  9075. ]
  9076. },
  9077. "require": {
  9078. "php": ">=7.3"
  9079. },
  9080. "require-dev": {
  9081. "phpunit/phpunit": "^9.3"
  9082. },
  9083. "type": "library",
  9084. "extra": {
  9085. "branch-alias": {
  9086. "dev-master": "5.0-dev"
  9087. }
  9088. },
  9089. "autoload": {
  9090. "classmap": [
  9091. "src/"
  9092. ]
  9093. },
  9094. "notification-url": "https://packagist.org/downloads/",
  9095. "license": [
  9096. "BSD-3-Clause"
  9097. ],
  9098. "authors": [
  9099. {
  9100. "name": "Sebastian Bergmann",
  9101. "email": "sebastian@phpunit.de",
  9102. "role": "lead"
  9103. }
  9104. ],
  9105. "description": "Utility class for timing",
  9106. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9107. "keywords": [
  9108. "timer"
  9109. ],
  9110. "time": "2020-10-26T13:16:10+00:00"
  9111. },
  9112. {
  9113. "name": "phpunit/phpunit",
  9114. "version": "9.5.8",
  9115. "source": {
  9116. "type": "git",
  9117. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9118. "reference": "191768ccd5c85513b4068bdbe99bb6390c7d54fb"
  9119. },
  9120. "dist": {
  9121. "type": "zip",
  9122. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/191768ccd5c85513b4068bdbe99bb6390c7d54fb",
  9123. "reference": "191768ccd5c85513b4068bdbe99bb6390c7d54fb",
  9124. "shasum": "",
  9125. "mirrors": [
  9126. {
  9127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9128. "preferred": true
  9129. }
  9130. ]
  9131. },
  9132. "require": {
  9133. "doctrine/instantiator": "^1.3.1",
  9134. "ext-dom": "*",
  9135. "ext-json": "*",
  9136. "ext-libxml": "*",
  9137. "ext-mbstring": "*",
  9138. "ext-xml": "*",
  9139. "ext-xmlwriter": "*",
  9140. "myclabs/deep-copy": "^1.10.1",
  9141. "phar-io/manifest": "^2.0.3",
  9142. "phar-io/version": "^3.0.2",
  9143. "php": ">=7.3",
  9144. "phpspec/prophecy": "^1.12.1",
  9145. "phpunit/php-code-coverage": "^9.2.3",
  9146. "phpunit/php-file-iterator": "^3.0.5",
  9147. "phpunit/php-invoker": "^3.1.1",
  9148. "phpunit/php-text-template": "^2.0.3",
  9149. "phpunit/php-timer": "^5.0.2",
  9150. "sebastian/cli-parser": "^1.0.1",
  9151. "sebastian/code-unit": "^1.0.6",
  9152. "sebastian/comparator": "^4.0.5",
  9153. "sebastian/diff": "^4.0.3",
  9154. "sebastian/environment": "^5.1.3",
  9155. "sebastian/exporter": "^4.0.3",
  9156. "sebastian/global-state": "^5.0.1",
  9157. "sebastian/object-enumerator": "^4.0.3",
  9158. "sebastian/resource-operations": "^3.0.3",
  9159. "sebastian/type": "^2.3.4",
  9160. "sebastian/version": "^3.0.2"
  9161. },
  9162. "require-dev": {
  9163. "ext-pdo": "*",
  9164. "phpspec/prophecy-phpunit": "^2.0.1"
  9165. },
  9166. "suggest": {
  9167. "ext-soap": "*",
  9168. "ext-xdebug": "*"
  9169. },
  9170. "bin": [
  9171. "phpunit"
  9172. ],
  9173. "type": "library",
  9174. "extra": {
  9175. "branch-alias": {
  9176. "dev-master": "9.5-dev"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "classmap": [
  9181. "src/"
  9182. ],
  9183. "files": [
  9184. "src/Framework/Assert/Functions.php"
  9185. ]
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "BSD-3-Clause"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Sebastian Bergmann",
  9194. "email": "sebastian@phpunit.de",
  9195. "role": "lead"
  9196. }
  9197. ],
  9198. "description": "The PHP Unit Testing framework.",
  9199. "homepage": "https://phpunit.de/",
  9200. "keywords": [
  9201. "phpunit",
  9202. "testing",
  9203. "xunit"
  9204. ],
  9205. "time": "2021-07-31T15:17:34+00:00"
  9206. },
  9207. {
  9208. "name": "react/promise",
  9209. "version": "v2.8.0",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/reactphp/promise.git",
  9213. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9218. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  9219. "shasum": "",
  9220. "mirrors": [
  9221. {
  9222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9223. "preferred": true
  9224. }
  9225. ]
  9226. },
  9227. "require": {
  9228. "php": ">=5.4.0"
  9229. },
  9230. "require-dev": {
  9231. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  9232. },
  9233. "type": "library",
  9234. "autoload": {
  9235. "psr-4": {
  9236. "React\\Promise\\": "src/"
  9237. },
  9238. "files": [
  9239. "src/functions_include.php"
  9240. ]
  9241. },
  9242. "notification-url": "https://packagist.org/downloads/",
  9243. "license": [
  9244. "MIT"
  9245. ],
  9246. "authors": [
  9247. {
  9248. "name": "Jan Sorgalla",
  9249. "email": "jsorgalla@gmail.com"
  9250. }
  9251. ],
  9252. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9253. "keywords": [
  9254. "promise",
  9255. "promises"
  9256. ],
  9257. "support": {
  9258. "issues": "https://github.com/reactphp/promise/issues",
  9259. "source": "https://github.com/reactphp/promise/tree/v2.8.0"
  9260. },
  9261. "time": "2020-05-12T15:16:56+00:00"
  9262. },
  9263. {
  9264. "name": "sebastian/cli-parser",
  9265. "version": "1.0.1",
  9266. "source": {
  9267. "type": "git",
  9268. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9269. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9270. },
  9271. "dist": {
  9272. "type": "zip",
  9273. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9274. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9275. "shasum": "",
  9276. "mirrors": [
  9277. {
  9278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9279. "preferred": true
  9280. }
  9281. ]
  9282. },
  9283. "require": {
  9284. "php": ">=7.3"
  9285. },
  9286. "require-dev": {
  9287. "phpunit/phpunit": "^9.3"
  9288. },
  9289. "type": "library",
  9290. "extra": {
  9291. "branch-alias": {
  9292. "dev-master": "1.0-dev"
  9293. }
  9294. },
  9295. "autoload": {
  9296. "classmap": [
  9297. "src/"
  9298. ]
  9299. },
  9300. "notification-url": "https://packagist.org/downloads/",
  9301. "license": [
  9302. "BSD-3-Clause"
  9303. ],
  9304. "authors": [
  9305. {
  9306. "name": "Sebastian Bergmann",
  9307. "email": "sebastian@phpunit.de",
  9308. "role": "lead"
  9309. }
  9310. ],
  9311. "description": "Library for parsing CLI options",
  9312. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9313. "time": "2020-09-28T06:08:49+00:00"
  9314. },
  9315. {
  9316. "name": "sebastian/code-unit",
  9317. "version": "1.0.8",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9321. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9326. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9327. "shasum": "",
  9328. "mirrors": [
  9329. {
  9330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9331. "preferred": true
  9332. }
  9333. ]
  9334. },
  9335. "require": {
  9336. "php": ">=7.3"
  9337. },
  9338. "require-dev": {
  9339. "phpunit/phpunit": "^9.3"
  9340. },
  9341. "type": "library",
  9342. "extra": {
  9343. "branch-alias": {
  9344. "dev-master": "1.0-dev"
  9345. }
  9346. },
  9347. "autoload": {
  9348. "classmap": [
  9349. "src/"
  9350. ]
  9351. },
  9352. "notification-url": "https://packagist.org/downloads/",
  9353. "license": [
  9354. "BSD-3-Clause"
  9355. ],
  9356. "authors": [
  9357. {
  9358. "name": "Sebastian Bergmann",
  9359. "email": "sebastian@phpunit.de",
  9360. "role": "lead"
  9361. }
  9362. ],
  9363. "description": "Collection of value objects that represent the PHP code units",
  9364. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9365. "time": "2020-10-26T13:08:54+00:00"
  9366. },
  9367. {
  9368. "name": "sebastian/code-unit-reverse-lookup",
  9369. "version": "2.0.3",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9373. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9378. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9379. "shasum": "",
  9380. "mirrors": [
  9381. {
  9382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9383. "preferred": true
  9384. }
  9385. ]
  9386. },
  9387. "require": {
  9388. "php": ">=7.3"
  9389. },
  9390. "require-dev": {
  9391. "phpunit/phpunit": "^9.3"
  9392. },
  9393. "type": "library",
  9394. "extra": {
  9395. "branch-alias": {
  9396. "dev-master": "2.0-dev"
  9397. }
  9398. },
  9399. "autoload": {
  9400. "classmap": [
  9401. "src/"
  9402. ]
  9403. },
  9404. "notification-url": "https://packagist.org/downloads/",
  9405. "license": [
  9406. "BSD-3-Clause"
  9407. ],
  9408. "authors": [
  9409. {
  9410. "name": "Sebastian Bergmann",
  9411. "email": "sebastian@phpunit.de"
  9412. }
  9413. ],
  9414. "description": "Looks up which function or method a line of code belongs to",
  9415. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9416. "time": "2020-09-28T05:30:19+00:00"
  9417. },
  9418. {
  9419. "name": "sebastian/comparator",
  9420. "version": "4.0.6",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/sebastianbergmann/comparator.git",
  9424. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  9429. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  9430. "shasum": "",
  9431. "mirrors": [
  9432. {
  9433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9434. "preferred": true
  9435. }
  9436. ]
  9437. },
  9438. "require": {
  9439. "php": ">=7.3",
  9440. "sebastian/diff": "^4.0",
  9441. "sebastian/exporter": "^4.0"
  9442. },
  9443. "require-dev": {
  9444. "phpunit/phpunit": "^9.3"
  9445. },
  9446. "type": "library",
  9447. "extra": {
  9448. "branch-alias": {
  9449. "dev-master": "4.0-dev"
  9450. }
  9451. },
  9452. "autoload": {
  9453. "classmap": [
  9454. "src/"
  9455. ]
  9456. },
  9457. "notification-url": "https://packagist.org/downloads/",
  9458. "license": [
  9459. "BSD-3-Clause"
  9460. ],
  9461. "authors": [
  9462. {
  9463. "name": "Sebastian Bergmann",
  9464. "email": "sebastian@phpunit.de"
  9465. },
  9466. {
  9467. "name": "Jeff Welch",
  9468. "email": "whatthejeff@gmail.com"
  9469. },
  9470. {
  9471. "name": "Volker Dusch",
  9472. "email": "github@wallbash.com"
  9473. },
  9474. {
  9475. "name": "Bernhard Schussek",
  9476. "email": "bschussek@2bepublished.at"
  9477. }
  9478. ],
  9479. "description": "Provides the functionality to compare PHP values for equality",
  9480. "homepage": "https://github.com/sebastianbergmann/comparator",
  9481. "keywords": [
  9482. "comparator",
  9483. "compare",
  9484. "equality"
  9485. ],
  9486. "time": "2020-10-26T15:49:45+00:00"
  9487. },
  9488. {
  9489. "name": "sebastian/complexity",
  9490. "version": "2.0.2",
  9491. "source": {
  9492. "type": "git",
  9493. "url": "https://github.com/sebastianbergmann/complexity.git",
  9494. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9495. },
  9496. "dist": {
  9497. "type": "zip",
  9498. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9499. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9500. "shasum": "",
  9501. "mirrors": [
  9502. {
  9503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9504. "preferred": true
  9505. }
  9506. ]
  9507. },
  9508. "require": {
  9509. "nikic/php-parser": "^4.7",
  9510. "php": ">=7.3"
  9511. },
  9512. "require-dev": {
  9513. "phpunit/phpunit": "^9.3"
  9514. },
  9515. "type": "library",
  9516. "extra": {
  9517. "branch-alias": {
  9518. "dev-master": "2.0-dev"
  9519. }
  9520. },
  9521. "autoload": {
  9522. "classmap": [
  9523. "src/"
  9524. ]
  9525. },
  9526. "notification-url": "https://packagist.org/downloads/",
  9527. "license": [
  9528. "BSD-3-Clause"
  9529. ],
  9530. "authors": [
  9531. {
  9532. "name": "Sebastian Bergmann",
  9533. "email": "sebastian@phpunit.de",
  9534. "role": "lead"
  9535. }
  9536. ],
  9537. "description": "Library for calculating the complexity of PHP code units",
  9538. "homepage": "https://github.com/sebastianbergmann/complexity",
  9539. "time": "2020-10-26T15:52:27+00:00"
  9540. },
  9541. {
  9542. "name": "sebastian/diff",
  9543. "version": "4.0.4",
  9544. "source": {
  9545. "type": "git",
  9546. "url": "https://github.com/sebastianbergmann/diff.git",
  9547. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9548. },
  9549. "dist": {
  9550. "type": "zip",
  9551. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9552. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9553. "shasum": "",
  9554. "mirrors": [
  9555. {
  9556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9557. "preferred": true
  9558. }
  9559. ]
  9560. },
  9561. "require": {
  9562. "php": ">=7.3"
  9563. },
  9564. "require-dev": {
  9565. "phpunit/phpunit": "^9.3",
  9566. "symfony/process": "^4.2 || ^5"
  9567. },
  9568. "type": "library",
  9569. "extra": {
  9570. "branch-alias": {
  9571. "dev-master": "4.0-dev"
  9572. }
  9573. },
  9574. "autoload": {
  9575. "classmap": [
  9576. "src/"
  9577. ]
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "license": [
  9581. "BSD-3-Clause"
  9582. ],
  9583. "authors": [
  9584. {
  9585. "name": "Sebastian Bergmann",
  9586. "email": "sebastian@phpunit.de"
  9587. },
  9588. {
  9589. "name": "Kore Nordmann",
  9590. "email": "mail@kore-nordmann.de"
  9591. }
  9592. ],
  9593. "description": "Diff implementation",
  9594. "homepage": "https://github.com/sebastianbergmann/diff",
  9595. "keywords": [
  9596. "diff",
  9597. "udiff",
  9598. "unidiff",
  9599. "unified diff"
  9600. ],
  9601. "time": "2020-10-26T13:10:38+00:00"
  9602. },
  9603. {
  9604. "name": "sebastian/environment",
  9605. "version": "5.1.3",
  9606. "source": {
  9607. "type": "git",
  9608. "url": "https://github.com/sebastianbergmann/environment.git",
  9609. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  9610. },
  9611. "dist": {
  9612. "type": "zip",
  9613. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  9614. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  9615. "shasum": "",
  9616. "mirrors": [
  9617. {
  9618. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9619. "preferred": true
  9620. }
  9621. ]
  9622. },
  9623. "require": {
  9624. "php": ">=7.3"
  9625. },
  9626. "require-dev": {
  9627. "phpunit/phpunit": "^9.3"
  9628. },
  9629. "suggest": {
  9630. "ext-posix": "*"
  9631. },
  9632. "type": "library",
  9633. "extra": {
  9634. "branch-alias": {
  9635. "dev-master": "5.1-dev"
  9636. }
  9637. },
  9638. "autoload": {
  9639. "classmap": [
  9640. "src/"
  9641. ]
  9642. },
  9643. "notification-url": "https://packagist.org/downloads/",
  9644. "license": [
  9645. "BSD-3-Clause"
  9646. ],
  9647. "authors": [
  9648. {
  9649. "name": "Sebastian Bergmann",
  9650. "email": "sebastian@phpunit.de"
  9651. }
  9652. ],
  9653. "description": "Provides functionality to handle HHVM/PHP environments",
  9654. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9655. "keywords": [
  9656. "Xdebug",
  9657. "environment",
  9658. "hhvm"
  9659. ],
  9660. "time": "2020-09-28T05:52:38+00:00"
  9661. },
  9662. {
  9663. "name": "sebastian/exporter",
  9664. "version": "4.0.3",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/sebastianbergmann/exporter.git",
  9668. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  9673. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  9674. "shasum": "",
  9675. "mirrors": [
  9676. {
  9677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9678. "preferred": true
  9679. }
  9680. ]
  9681. },
  9682. "require": {
  9683. "php": ">=7.3",
  9684. "sebastian/recursion-context": "^4.0"
  9685. },
  9686. "require-dev": {
  9687. "ext-mbstring": "*",
  9688. "phpunit/phpunit": "^9.3"
  9689. },
  9690. "type": "library",
  9691. "extra": {
  9692. "branch-alias": {
  9693. "dev-master": "4.0-dev"
  9694. }
  9695. },
  9696. "autoload": {
  9697. "classmap": [
  9698. "src/"
  9699. ]
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "BSD-3-Clause"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Sebastian Bergmann",
  9708. "email": "sebastian@phpunit.de"
  9709. },
  9710. {
  9711. "name": "Jeff Welch",
  9712. "email": "whatthejeff@gmail.com"
  9713. },
  9714. {
  9715. "name": "Volker Dusch",
  9716. "email": "github@wallbash.com"
  9717. },
  9718. {
  9719. "name": "Adam Harvey",
  9720. "email": "aharvey@php.net"
  9721. },
  9722. {
  9723. "name": "Bernhard Schussek",
  9724. "email": "bschussek@gmail.com"
  9725. }
  9726. ],
  9727. "description": "Provides the functionality to export PHP variables for visualization",
  9728. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9729. "keywords": [
  9730. "export",
  9731. "exporter"
  9732. ],
  9733. "time": "2020-09-28T05:24:23+00:00"
  9734. },
  9735. {
  9736. "name": "sebastian/global-state",
  9737. "version": "5.0.3",
  9738. "source": {
  9739. "type": "git",
  9740. "url": "https://github.com/sebastianbergmann/global-state.git",
  9741. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
  9742. },
  9743. "dist": {
  9744. "type": "zip",
  9745. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  9746. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  9747. "shasum": "",
  9748. "mirrors": [
  9749. {
  9750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9751. "preferred": true
  9752. }
  9753. ]
  9754. },
  9755. "require": {
  9756. "php": ">=7.3",
  9757. "sebastian/object-reflector": "^2.0",
  9758. "sebastian/recursion-context": "^4.0"
  9759. },
  9760. "require-dev": {
  9761. "ext-dom": "*",
  9762. "phpunit/phpunit": "^9.3"
  9763. },
  9764. "suggest": {
  9765. "ext-uopz": "*"
  9766. },
  9767. "type": "library",
  9768. "extra": {
  9769. "branch-alias": {
  9770. "dev-master": "5.0-dev"
  9771. }
  9772. },
  9773. "autoload": {
  9774. "classmap": [
  9775. "src/"
  9776. ]
  9777. },
  9778. "notification-url": "https://packagist.org/downloads/",
  9779. "license": [
  9780. "BSD-3-Clause"
  9781. ],
  9782. "authors": [
  9783. {
  9784. "name": "Sebastian Bergmann",
  9785. "email": "sebastian@phpunit.de"
  9786. }
  9787. ],
  9788. "description": "Snapshotting of global state",
  9789. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9790. "keywords": [
  9791. "global state"
  9792. ],
  9793. "time": "2021-06-11T13:31:12+00:00"
  9794. },
  9795. {
  9796. "name": "sebastian/lines-of-code",
  9797. "version": "1.0.3",
  9798. "source": {
  9799. "type": "git",
  9800. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9801. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  9802. },
  9803. "dist": {
  9804. "type": "zip",
  9805. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9806. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  9807. "shasum": "",
  9808. "mirrors": [
  9809. {
  9810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9811. "preferred": true
  9812. }
  9813. ]
  9814. },
  9815. "require": {
  9816. "nikic/php-parser": "^4.6",
  9817. "php": ">=7.3"
  9818. },
  9819. "require-dev": {
  9820. "phpunit/phpunit": "^9.3"
  9821. },
  9822. "type": "library",
  9823. "extra": {
  9824. "branch-alias": {
  9825. "dev-master": "1.0-dev"
  9826. }
  9827. },
  9828. "autoload": {
  9829. "classmap": [
  9830. "src/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "BSD-3-Clause"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Sebastian Bergmann",
  9840. "email": "sebastian@phpunit.de",
  9841. "role": "lead"
  9842. }
  9843. ],
  9844. "description": "Library for counting the lines of code in PHP source code",
  9845. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9846. "time": "2020-11-28T06:42:11+00:00"
  9847. },
  9848. {
  9849. "name": "sebastian/object-enumerator",
  9850. "version": "4.0.4",
  9851. "source": {
  9852. "type": "git",
  9853. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9854. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9855. },
  9856. "dist": {
  9857. "type": "zip",
  9858. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9859. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9860. "shasum": "",
  9861. "mirrors": [
  9862. {
  9863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9864. "preferred": true
  9865. }
  9866. ]
  9867. },
  9868. "require": {
  9869. "php": ">=7.3",
  9870. "sebastian/object-reflector": "^2.0",
  9871. "sebastian/recursion-context": "^4.0"
  9872. },
  9873. "require-dev": {
  9874. "phpunit/phpunit": "^9.3"
  9875. },
  9876. "type": "library",
  9877. "extra": {
  9878. "branch-alias": {
  9879. "dev-master": "4.0-dev"
  9880. }
  9881. },
  9882. "autoload": {
  9883. "classmap": [
  9884. "src/"
  9885. ]
  9886. },
  9887. "notification-url": "https://packagist.org/downloads/",
  9888. "license": [
  9889. "BSD-3-Clause"
  9890. ],
  9891. "authors": [
  9892. {
  9893. "name": "Sebastian Bergmann",
  9894. "email": "sebastian@phpunit.de"
  9895. }
  9896. ],
  9897. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9898. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9899. "time": "2020-10-26T13:12:34+00:00"
  9900. },
  9901. {
  9902. "name": "sebastian/object-reflector",
  9903. "version": "2.0.4",
  9904. "source": {
  9905. "type": "git",
  9906. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9907. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9908. },
  9909. "dist": {
  9910. "type": "zip",
  9911. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9912. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9913. "shasum": "",
  9914. "mirrors": [
  9915. {
  9916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9917. "preferred": true
  9918. }
  9919. ]
  9920. },
  9921. "require": {
  9922. "php": ">=7.3"
  9923. },
  9924. "require-dev": {
  9925. "phpunit/phpunit": "^9.3"
  9926. },
  9927. "type": "library",
  9928. "extra": {
  9929. "branch-alias": {
  9930. "dev-master": "2.0-dev"
  9931. }
  9932. },
  9933. "autoload": {
  9934. "classmap": [
  9935. "src/"
  9936. ]
  9937. },
  9938. "notification-url": "https://packagist.org/downloads/",
  9939. "license": [
  9940. "BSD-3-Clause"
  9941. ],
  9942. "authors": [
  9943. {
  9944. "name": "Sebastian Bergmann",
  9945. "email": "sebastian@phpunit.de"
  9946. }
  9947. ],
  9948. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9949. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9950. "time": "2020-10-26T13:14:26+00:00"
  9951. },
  9952. {
  9953. "name": "sebastian/recursion-context",
  9954. "version": "4.0.4",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9958. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  9963. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  9964. "shasum": "",
  9965. "mirrors": [
  9966. {
  9967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9968. "preferred": true
  9969. }
  9970. ]
  9971. },
  9972. "require": {
  9973. "php": ">=7.3"
  9974. },
  9975. "require-dev": {
  9976. "phpunit/phpunit": "^9.3"
  9977. },
  9978. "type": "library",
  9979. "extra": {
  9980. "branch-alias": {
  9981. "dev-master": "4.0-dev"
  9982. }
  9983. },
  9984. "autoload": {
  9985. "classmap": [
  9986. "src/"
  9987. ]
  9988. },
  9989. "notification-url": "https://packagist.org/downloads/",
  9990. "license": [
  9991. "BSD-3-Clause"
  9992. ],
  9993. "authors": [
  9994. {
  9995. "name": "Sebastian Bergmann",
  9996. "email": "sebastian@phpunit.de"
  9997. },
  9998. {
  9999. "name": "Jeff Welch",
  10000. "email": "whatthejeff@gmail.com"
  10001. },
  10002. {
  10003. "name": "Adam Harvey",
  10004. "email": "aharvey@php.net"
  10005. }
  10006. ],
  10007. "description": "Provides functionality to recursively process PHP variables",
  10008. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10009. "time": "2020-10-26T13:17:30+00:00"
  10010. },
  10011. {
  10012. "name": "sebastian/resource-operations",
  10013. "version": "3.0.3",
  10014. "source": {
  10015. "type": "git",
  10016. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10017. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10018. },
  10019. "dist": {
  10020. "type": "zip",
  10021. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10022. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10023. "shasum": "",
  10024. "mirrors": [
  10025. {
  10026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10027. "preferred": true
  10028. }
  10029. ]
  10030. },
  10031. "require": {
  10032. "php": ">=7.3"
  10033. },
  10034. "require-dev": {
  10035. "phpunit/phpunit": "^9.0"
  10036. },
  10037. "type": "library",
  10038. "extra": {
  10039. "branch-alias": {
  10040. "dev-master": "3.0-dev"
  10041. }
  10042. },
  10043. "autoload": {
  10044. "classmap": [
  10045. "src/"
  10046. ]
  10047. },
  10048. "notification-url": "https://packagist.org/downloads/",
  10049. "license": [
  10050. "BSD-3-Clause"
  10051. ],
  10052. "authors": [
  10053. {
  10054. "name": "Sebastian Bergmann",
  10055. "email": "sebastian@phpunit.de"
  10056. }
  10057. ],
  10058. "description": "Provides a list of PHP built-in functions that operate on resources",
  10059. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10060. "time": "2020-09-28T06:45:17+00:00"
  10061. },
  10062. {
  10063. "name": "sebastian/type",
  10064. "version": "2.3.4",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/sebastianbergmann/type.git",
  10068. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  10073. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  10074. "shasum": "",
  10075. "mirrors": [
  10076. {
  10077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10078. "preferred": true
  10079. }
  10080. ]
  10081. },
  10082. "require": {
  10083. "php": ">=7.3"
  10084. },
  10085. "require-dev": {
  10086. "phpunit/phpunit": "^9.3"
  10087. },
  10088. "type": "library",
  10089. "extra": {
  10090. "branch-alias": {
  10091. "dev-master": "2.3-dev"
  10092. }
  10093. },
  10094. "autoload": {
  10095. "classmap": [
  10096. "src/"
  10097. ]
  10098. },
  10099. "notification-url": "https://packagist.org/downloads/",
  10100. "license": [
  10101. "BSD-3-Clause"
  10102. ],
  10103. "authors": [
  10104. {
  10105. "name": "Sebastian Bergmann",
  10106. "email": "sebastian@phpunit.de",
  10107. "role": "lead"
  10108. }
  10109. ],
  10110. "description": "Collection of value objects that represent the types of the PHP type system",
  10111. "homepage": "https://github.com/sebastianbergmann/type",
  10112. "time": "2021-06-15T12:49:02+00:00"
  10113. },
  10114. {
  10115. "name": "sebastian/version",
  10116. "version": "3.0.2",
  10117. "source": {
  10118. "type": "git",
  10119. "url": "https://github.com/sebastianbergmann/version.git",
  10120. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10121. },
  10122. "dist": {
  10123. "type": "zip",
  10124. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10125. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10126. "shasum": "",
  10127. "mirrors": [
  10128. {
  10129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10130. "preferred": true
  10131. }
  10132. ]
  10133. },
  10134. "require": {
  10135. "php": ">=7.3"
  10136. },
  10137. "type": "library",
  10138. "extra": {
  10139. "branch-alias": {
  10140. "dev-master": "3.0-dev"
  10141. }
  10142. },
  10143. "autoload": {
  10144. "classmap": [
  10145. "src/"
  10146. ]
  10147. },
  10148. "notification-url": "https://packagist.org/downloads/",
  10149. "license": [
  10150. "BSD-3-Clause"
  10151. ],
  10152. "authors": [
  10153. {
  10154. "name": "Sebastian Bergmann",
  10155. "email": "sebastian@phpunit.de",
  10156. "role": "lead"
  10157. }
  10158. ],
  10159. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10160. "homepage": "https://github.com/sebastianbergmann/version",
  10161. "time": "2020-09-28T06:39:44+00:00"
  10162. },
  10163. {
  10164. "name": "seld/jsonlint",
  10165. "version": "1.8.3",
  10166. "source": {
  10167. "type": "git",
  10168. "url": "https://github.com/Seldaek/jsonlint.git",
  10169. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  10170. },
  10171. "dist": {
  10172. "type": "zip",
  10173. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10174. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  10175. "shasum": "",
  10176. "mirrors": [
  10177. {
  10178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10179. "preferred": true
  10180. }
  10181. ]
  10182. },
  10183. "require": {
  10184. "php": "^5.3 || ^7.0 || ^8.0"
  10185. },
  10186. "require-dev": {
  10187. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  10188. },
  10189. "bin": [
  10190. "bin/jsonlint"
  10191. ],
  10192. "type": "library",
  10193. "autoload": {
  10194. "psr-4": {
  10195. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  10196. }
  10197. },
  10198. "notification-url": "https://packagist.org/downloads/",
  10199. "license": [
  10200. "MIT"
  10201. ],
  10202. "authors": [
  10203. {
  10204. "name": "Jordi Boggiano",
  10205. "email": "j.boggiano@seld.be",
  10206. "homepage": "http://seld.be"
  10207. }
  10208. ],
  10209. "description": "JSON Linter",
  10210. "keywords": [
  10211. "json",
  10212. "linter",
  10213. "parser",
  10214. "validator"
  10215. ],
  10216. "support": {
  10217. "issues": "https://github.com/Seldaek/jsonlint/issues",
  10218. "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3"
  10219. },
  10220. "funding": [
  10221. {
  10222. "url": "https://github.com/Seldaek",
  10223. "type": "github"
  10224. },
  10225. {
  10226. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  10227. "type": "tidelift"
  10228. }
  10229. ],
  10230. "time": "2020-11-11T09:19:24+00:00"
  10231. },
  10232. {
  10233. "name": "seld/phar-utils",
  10234. "version": "1.1.1",
  10235. "source": {
  10236. "type": "git",
  10237. "url": "https://github.com/Seldaek/phar-utils.git",
  10238. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  10239. },
  10240. "dist": {
  10241. "type": "zip",
  10242. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10243. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  10244. "shasum": "",
  10245. "mirrors": [
  10246. {
  10247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10248. "preferred": true
  10249. }
  10250. ]
  10251. },
  10252. "require": {
  10253. "php": ">=5.3"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-master": "1.x-dev"
  10259. }
  10260. },
  10261. "autoload": {
  10262. "psr-4": {
  10263. "Seld\\PharUtils\\": "src/"
  10264. }
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "MIT"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Jordi Boggiano",
  10273. "email": "j.boggiano@seld.be"
  10274. }
  10275. ],
  10276. "description": "PHAR file format utilities, for when PHP phars you up",
  10277. "keywords": [
  10278. "phar"
  10279. ],
  10280. "support": {
  10281. "issues": "https://github.com/Seldaek/phar-utils/issues",
  10282. "source": "https://github.com/Seldaek/phar-utils/tree/master"
  10283. },
  10284. "time": "2020-07-07T18:42:57+00:00"
  10285. },
  10286. {
  10287. "name": "symfony/filesystem",
  10288. "version": "v5.3.4",
  10289. "source": {
  10290. "type": "git",
  10291. "url": "https://github.com/symfony/filesystem.git",
  10292. "reference": "343f4fe324383ca46792cae728a3b6e2f708fb32"
  10293. },
  10294. "dist": {
  10295. "type": "zip",
  10296. "url": "https://api.github.com/repos/symfony/filesystem/zipball/343f4fe324383ca46792cae728a3b6e2f708fb32",
  10297. "reference": "343f4fe324383ca46792cae728a3b6e2f708fb32",
  10298. "shasum": "",
  10299. "mirrors": [
  10300. {
  10301. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10302. "preferred": true
  10303. }
  10304. ]
  10305. },
  10306. "require": {
  10307. "php": ">=7.2.5",
  10308. "symfony/polyfill-ctype": "~1.8",
  10309. "symfony/polyfill-php80": "^1.16"
  10310. },
  10311. "type": "library",
  10312. "autoload": {
  10313. "psr-4": {
  10314. "Symfony\\Component\\Filesystem\\": ""
  10315. },
  10316. "exclude-from-classmap": [
  10317. "/Tests/"
  10318. ]
  10319. },
  10320. "notification-url": "https://packagist.org/downloads/",
  10321. "license": [
  10322. "MIT"
  10323. ],
  10324. "authors": [
  10325. {
  10326. "name": "Fabien Potencier",
  10327. "email": "fabien@symfony.com"
  10328. },
  10329. {
  10330. "name": "Symfony Community",
  10331. "homepage": "https://symfony.com/contributors"
  10332. }
  10333. ],
  10334. "description": "Provides basic utilities for the filesystem",
  10335. "homepage": "https://symfony.com",
  10336. "support": {
  10337. "source": "https://github.com/symfony/filesystem/tree/v5.3.4"
  10338. },
  10339. "funding": [
  10340. {
  10341. "url": "https://symfony.com/sponsor",
  10342. "type": "custom"
  10343. },
  10344. {
  10345. "url": "https://github.com/fabpot",
  10346. "type": "github"
  10347. },
  10348. {
  10349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10350. "type": "tidelift"
  10351. }
  10352. ],
  10353. "time": "2021-07-21T12:40:44+00:00"
  10354. },
  10355. {
  10356. "name": "theseer/tokenizer",
  10357. "version": "1.2.1",
  10358. "source": {
  10359. "type": "git",
  10360. "url": "https://github.com/theseer/tokenizer.git",
  10361. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10362. },
  10363. "dist": {
  10364. "type": "zip",
  10365. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10366. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10367. "shasum": "",
  10368. "mirrors": [
  10369. {
  10370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10371. "preferred": true
  10372. }
  10373. ]
  10374. },
  10375. "require": {
  10376. "ext-dom": "*",
  10377. "ext-tokenizer": "*",
  10378. "ext-xmlwriter": "*",
  10379. "php": "^7.2 || ^8.0"
  10380. },
  10381. "type": "library",
  10382. "autoload": {
  10383. "classmap": [
  10384. "src/"
  10385. ]
  10386. },
  10387. "notification-url": "https://packagist.org/downloads/",
  10388. "license": [
  10389. "BSD-3-Clause"
  10390. ],
  10391. "authors": [
  10392. {
  10393. "name": "Arne Blankerts",
  10394. "email": "arne@blankerts.de",
  10395. "role": "Developer"
  10396. }
  10397. ],
  10398. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10399. "time": "2021-07-28T10:34:58+00:00"
  10400. }
  10401. ],
  10402. "aliases": [],
  10403. "minimum-stability": "dev",
  10404. "stability-flags": [],
  10405. "prefer-stable": true,
  10406. "prefer-lowest": false,
  10407. "platform": {
  10408. "php": "^7.3|^8.0"
  10409. },
  10410. "platform-dev": [],
  10411. "plugin-api-version": "2.0.0"
  10412. }