composer.lock 354 KB

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