composer.lock 364 KB

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