composer.lock 204 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926
  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": "40dbb242443086c99aa47ea8ca366d67",
  8. "packages": [
  9. {
  10. "name": "antoligy/dom-string-iterators",
  11. "version": "v1.0.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/antoligy/dom-string-iterators.git",
  15. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/antoligy/dom-string-iterators/zipball/fae88f66e1970d68c5585fc42db44f1217bf74e6",
  20. "reference": "fae88f66e1970d68c5585fc42db44f1217bf74e6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "": "src/"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "CC0-1.0"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Alex Wilson",
  39. "email": "a@ax.gy"
  40. },
  41. {
  42. "name": "Kornel Lesinski",
  43. "email": "pornel@pornel.net"
  44. },
  45. {
  46. "name": "Patrick Galbraith",
  47. "email": "patrick.j.galbraith@gmail.com"
  48. }
  49. ],
  50. "description": "Composer package for DOMWordsIterator and DOMLettersIterator",
  51. "time": "2018-02-03T16:01:11+00:00"
  52. },
  53. {
  54. "name": "composer/ca-bundle",
  55. "version": "1.2.8",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/composer/ca-bundle.git",
  59. "reference": "8a7ecad675253e4654ea05505233285377405215"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
  64. "reference": "8a7ecad675253e4654ea05505233285377405215",
  65. "shasum": ""
  66. },
  67. "require": {
  68. "ext-openssl": "*",
  69. "ext-pcre": "*",
  70. "php": "^5.3.2 || ^7.0 || ^8.0"
  71. },
  72. "require-dev": {
  73. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
  74. "psr/log": "^1.0",
  75. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  76. },
  77. "type": "library",
  78. "extra": {
  79. "branch-alias": {
  80. "dev-master": "1.x-dev"
  81. }
  82. },
  83. "autoload": {
  84. "psr-4": {
  85. "Composer\\CaBundle\\": "src"
  86. }
  87. },
  88. "notification-url": "https://packagist.org/downloads/",
  89. "license": [
  90. "MIT"
  91. ],
  92. "authors": [
  93. {
  94. "name": "Jordi Boggiano",
  95. "email": "j.boggiano@seld.be",
  96. "homepage": "http://seld.be"
  97. }
  98. ],
  99. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  100. "keywords": [
  101. "cabundle",
  102. "cacert",
  103. "certificate",
  104. "ssl",
  105. "tls"
  106. ],
  107. "time": "2020-08-23T12:54:47+00:00"
  108. },
  109. {
  110. "name": "doctrine/cache",
  111. "version": "1.10.2",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/doctrine/cache.git",
  115. "reference": "13e3381b25847283a91948d04640543941309727"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  120. "reference": "13e3381b25847283a91948d04640543941309727",
  121. "shasum": ""
  122. },
  123. "require": {
  124. "php": "~7.1 || ^8.0"
  125. },
  126. "conflict": {
  127. "doctrine/common": ">2.2,<2.4"
  128. },
  129. "require-dev": {
  130. "alcaeus/mongo-php-adapter": "^1.1",
  131. "doctrine/coding-standard": "^6.0",
  132. "mongodb/mongodb": "^1.1",
  133. "phpunit/phpunit": "^7.0",
  134. "predis/predis": "~1.0"
  135. },
  136. "suggest": {
  137. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  138. },
  139. "type": "library",
  140. "extra": {
  141. "branch-alias": {
  142. "dev-master": "1.9.x-dev"
  143. }
  144. },
  145. "autoload": {
  146. "psr-4": {
  147. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  148. }
  149. },
  150. "notification-url": "https://packagist.org/downloads/",
  151. "license": [
  152. "MIT"
  153. ],
  154. "authors": [
  155. {
  156. "name": "Guilherme Blanco",
  157. "email": "guilhermeblanco@gmail.com"
  158. },
  159. {
  160. "name": "Roman Borschel",
  161. "email": "roman@code-factory.org"
  162. },
  163. {
  164. "name": "Benjamin Eberlei",
  165. "email": "kontakt@beberlei.de"
  166. },
  167. {
  168. "name": "Jonathan Wage",
  169. "email": "jonwage@gmail.com"
  170. },
  171. {
  172. "name": "Johannes Schmitt",
  173. "email": "schmittjoh@gmail.com"
  174. }
  175. ],
  176. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  177. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  178. "keywords": [
  179. "abstraction",
  180. "apcu",
  181. "cache",
  182. "caching",
  183. "couchdb",
  184. "memcached",
  185. "php",
  186. "redis",
  187. "xcache"
  188. ],
  189. "time": "2020-07-07T18:54:01+00:00"
  190. },
  191. {
  192. "name": "doctrine/collections",
  193. "version": "1.6.7",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/doctrine/collections.git",
  197. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  202. "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "php": "^7.1.3 || ^8.0"
  207. },
  208. "require-dev": {
  209. "doctrine/coding-standard": "^6.0",
  210. "phpstan/phpstan-shim": "^0.9.2",
  211. "phpunit/phpunit": "^7.0",
  212. "vimeo/psalm": "^3.8.1"
  213. },
  214. "type": "library",
  215. "autoload": {
  216. "psr-4": {
  217. "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
  218. }
  219. },
  220. "notification-url": "https://packagist.org/downloads/",
  221. "license": [
  222. "MIT"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Guilherme Blanco",
  227. "email": "guilhermeblanco@gmail.com"
  228. },
  229. {
  230. "name": "Roman Borschel",
  231. "email": "roman@code-factory.org"
  232. },
  233. {
  234. "name": "Benjamin Eberlei",
  235. "email": "kontakt@beberlei.de"
  236. },
  237. {
  238. "name": "Jonathan Wage",
  239. "email": "jonwage@gmail.com"
  240. },
  241. {
  242. "name": "Johannes Schmitt",
  243. "email": "schmittjoh@gmail.com"
  244. }
  245. ],
  246. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  247. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  248. "keywords": [
  249. "array",
  250. "collections",
  251. "iterators",
  252. "php"
  253. ],
  254. "time": "2020-07-27T17:53:49+00:00"
  255. },
  256. {
  257. "name": "donatj/phpuseragentparser",
  258. "version": "v1.1.0",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/donatj/PhpUserAgent.git",
  262. "reference": "faac0bd29d564712957c19648711b87c11d79ef0"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/donatj/PhpUserAgent/zipball/faac0bd29d564712957c19648711b87c11d79ef0",
  267. "reference": "faac0bd29d564712957c19648711b87c11d79ef0",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": ">=5.3.0"
  272. },
  273. "require-dev": {
  274. "camspiers/json-pretty": "~1.0",
  275. "donatj/drop": "*",
  276. "phpunit/phpunit": "~4.8"
  277. },
  278. "type": "library",
  279. "autoload": {
  280. "files": [
  281. "src/UserAgentParser.php"
  282. ],
  283. "psr-4": {
  284. "donatj\\UserAgent\\": "src/UserAgent"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Jesse G. Donat",
  294. "email": "donatj@gmail.com",
  295. "homepage": "https://donatstudios.com",
  296. "role": "Developer"
  297. }
  298. ],
  299. "description": "Lightning fast, minimalist PHP UserAgent string parser.",
  300. "homepage": "https://donatstudios.com/PHP-Parser-HTTP_USER_AGENT",
  301. "keywords": [
  302. "browser",
  303. "browser detection",
  304. "parser",
  305. "user agent",
  306. "useragent"
  307. ],
  308. "time": "2020-09-01T16:13:00+00:00"
  309. },
  310. {
  311. "name": "dragonmantank/cron-expression",
  312. "version": "v1.2.1",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/dragonmantank/cron-expression.git",
  316. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
  321. "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
  322. "shasum": ""
  323. },
  324. "require": {
  325. "php": ">=5.3.2"
  326. },
  327. "require-dev": {
  328. "phpunit/phpunit": "~4.0|~5.0"
  329. },
  330. "type": "library",
  331. "autoload": {
  332. "psr-4": {
  333. "Cron\\": "src/Cron/"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "MIT"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Michael Dowling",
  343. "email": "mtdowling@gmail.com",
  344. "homepage": "https://github.com/mtdowling"
  345. }
  346. ],
  347. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  348. "keywords": [
  349. "cron",
  350. "schedule"
  351. ],
  352. "time": "2017-01-23T04:29:33+00:00"
  353. },
  354. {
  355. "name": "filp/whoops",
  356. "version": "2.9.0",
  357. "source": {
  358. "type": "git",
  359. "url": "https://github.com/filp/whoops.git",
  360. "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8"
  361. },
  362. "dist": {
  363. "type": "zip",
  364. "url": "https://api.github.com/repos/filp/whoops/zipball/2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8",
  365. "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8",
  366. "shasum": ""
  367. },
  368. "require": {
  369. "php": "^5.5.9 || ^7.0 || ^8.0",
  370. "psr/log": "^1.0.1"
  371. },
  372. "require-dev": {
  373. "mockery/mockery": "^0.9 || ^1.0",
  374. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  375. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  376. },
  377. "suggest": {
  378. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  379. "whoops/soap": "Formats errors as SOAP responses"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-master": "2.7-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Whoops\\": "src/Whoops/"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Filipe Dobreira",
  399. "homepage": "https://github.com/filp",
  400. "role": "Developer"
  401. }
  402. ],
  403. "description": "php error handling for cool kids",
  404. "homepage": "https://filp.github.io/whoops/",
  405. "keywords": [
  406. "error",
  407. "exception",
  408. "handling",
  409. "library",
  410. "throwable",
  411. "whoops"
  412. ],
  413. "time": "2020-10-20T12:00:00+00:00"
  414. },
  415. {
  416. "name": "gregwar/cache",
  417. "version": "v1.0.12",
  418. "target-dir": "Gregwar/Cache",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/Gregwar/Cache.git",
  422. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/Gregwar/Cache/zipball/305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  427. "reference": "305d0f5a12c0beecbbd7e1de236f59f39e0c0ac3",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": ">=5.3"
  432. },
  433. "type": "library",
  434. "autoload": {
  435. "psr-0": {
  436. "Gregwar\\Cache": ""
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "MIT"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Gregwar",
  446. "email": "g.passault@gmail.com"
  447. }
  448. ],
  449. "description": "A lightweight file-system cache system",
  450. "keywords": [
  451. "cache",
  452. "caching",
  453. "file-system",
  454. "system"
  455. ],
  456. "time": "2016-09-23T08:16:04+00:00"
  457. },
  458. {
  459. "name": "gregwar/image",
  460. "version": "v2.0.28",
  461. "target-dir": "Gregwar/Image",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/Gregwar/Image.git",
  465. "reference": "68b4eddc45dacb3532e0fa16e5cb7d3937424a0c"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/Gregwar/Image/zipball/68b4eddc45dacb3532e0fa16e5cb7d3937424a0c",
  470. "reference": "68b4eddc45dacb3532e0fa16e5cb7d3937424a0c",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "ext-gd": "*",
  475. "gregwar/cache": "^1.0.6",
  476. "php": "^5.3 || ^7.0"
  477. },
  478. "require-dev": {
  479. "sllh/php-cs-fixer-styleci-bridge": "~1.0",
  480. "symfony/phpunit-bridge": "^2.7.4 || ^3.0"
  481. },
  482. "suggest": {
  483. "behat/transliterator": "Transliterator provides ability to set non-latin1 pretty names"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-0": {
  488. "Gregwar\\Image": ""
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "MIT"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Grégoire Passault",
  498. "email": "g.passault@gmail.com",
  499. "homepage": "http://www.gregwar.com/"
  500. }
  501. ],
  502. "description": "Image handling",
  503. "homepage": "https://github.com/Gregwar/Image",
  504. "keywords": [
  505. "gd",
  506. "image"
  507. ],
  508. "time": "2020-03-31T17:33:39+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/psr7",
  512. "version": "1.7.0",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/psr7.git",
  516. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  521. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "php": ">=5.4.0",
  526. "psr/http-message": "~1.0",
  527. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  528. },
  529. "provide": {
  530. "psr/http-message-implementation": "1.0"
  531. },
  532. "require-dev": {
  533. "ext-zlib": "*",
  534. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  535. },
  536. "suggest": {
  537. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-master": "1.7-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-4": {
  547. "GuzzleHttp\\Psr7\\": "src/"
  548. },
  549. "files": [
  550. "src/functions_include.php"
  551. ]
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Michael Dowling",
  560. "email": "mtdowling@gmail.com",
  561. "homepage": "https://github.com/mtdowling"
  562. },
  563. {
  564. "name": "Tobias Schultze",
  565. "homepage": "https://github.com/Tobion"
  566. }
  567. ],
  568. "description": "PSR-7 message implementation that also provides common utility methods",
  569. "keywords": [
  570. "http",
  571. "message",
  572. "psr-7",
  573. "request",
  574. "response",
  575. "stream",
  576. "uri",
  577. "url"
  578. ],
  579. "time": "2020-09-30T07:37:11+00:00"
  580. },
  581. {
  582. "name": "kodus/psr7-server",
  583. "version": "1.0.1",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/kodus/psr7-server.git",
  587. "reference": "dcfd0116451b0f0e7c6b23b831757ed288347278"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/kodus/psr7-server/zipball/dcfd0116451b0f0e7c6b23b831757ed288347278",
  592. "reference": "dcfd0116451b0f0e7c6b23b831757ed288347278",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "php": "^7.1",
  597. "psr/http-factory": "^1.0",
  598. "psr/http-message": "^1.0"
  599. },
  600. "replace": {
  601. "nyholm/psr7-server": "^0.3"
  602. },
  603. "require-dev": {
  604. "nyholm/nsa": "^1.1",
  605. "nyholm/psr7": "^1.0",
  606. "phpunit/phpunit": "^7.0"
  607. },
  608. "type": "library",
  609. "autoload": {
  610. "psr-4": {
  611. "Nyholm\\Psr7Server\\": "src/"
  612. }
  613. },
  614. "notification-url": "https://packagist.org/downloads/",
  615. "license": [
  616. "MIT"
  617. ],
  618. "authors": [
  619. {
  620. "name": "Tobias Nyholm",
  621. "email": "tobias.nyholm@gmail.com"
  622. },
  623. {
  624. "name": "Martijn van der Ven",
  625. "email": "martijn@vanderven.se"
  626. }
  627. ],
  628. "description": "Helper classes to handle PSR-7 server requests",
  629. "homepage": "http://tnyholm.se",
  630. "keywords": [
  631. "psr-17",
  632. "psr-7"
  633. ],
  634. "time": "2019-06-17T10:48:13+00:00"
  635. },
  636. {
  637. "name": "league/climate",
  638. "version": "3.5.2",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/thephpleague/climate.git",
  642. "reference": "6b53a28a58ad9f5f63042e291eb870cf0d02a9c9"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/thephpleague/climate/zipball/6b53a28a58ad9f5f63042e291eb870cf0d02a9c9",
  647. "reference": "6b53a28a58ad9f5f63042e291eb870cf0d02a9c9",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.1",
  652. "psr/log": "^1.0",
  653. "seld/cli-prompt": "^1.0"
  654. },
  655. "require-dev": {
  656. "mikey179/vfsstream": "^1.4",
  657. "mockery/mockery": "^1.0",
  658. "phpunit/phpunit": "^5.7.16"
  659. },
  660. "suggest": {
  661. "ext-mbstring": "If ext-mbstring is not available you MUST install symfony/polyfill-mbstring"
  662. },
  663. "type": "library",
  664. "autoload": {
  665. "psr-4": {
  666. "League\\CLImate\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Joe Tannenbaum",
  676. "email": "hey@joe.codes",
  677. "homepage": "http://joe.codes/",
  678. "role": "Developer"
  679. },
  680. {
  681. "name": "Craig Duncan",
  682. "email": "git@duncanc.co.uk",
  683. "homepage": "https://github.com/duncan3dc",
  684. "role": "Developer"
  685. }
  686. ],
  687. "description": "PHP's best friend for the terminal. CLImate allows you to easily output colored text, special formats, and more.",
  688. "keywords": [
  689. "cli",
  690. "colors",
  691. "command",
  692. "php",
  693. "terminal"
  694. ],
  695. "time": "2019-12-01T15:25:43+00:00"
  696. },
  697. {
  698. "name": "matthiasmullie/minify",
  699. "version": "1.3.63",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/matthiasmullie/minify.git",
  703. "reference": "9ba1b459828adc13430f4dd6c49dae4950dc4117"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/9ba1b459828adc13430f4dd6c49dae4950dc4117",
  708. "reference": "9ba1b459828adc13430f4dd6c49dae4950dc4117",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "ext-pcre": "*",
  713. "matthiasmullie/path-converter": "~1.1",
  714. "php": ">=5.3.0"
  715. },
  716. "require-dev": {
  717. "friendsofphp/php-cs-fixer": "~2.0",
  718. "matthiasmullie/scrapbook": "~1.0",
  719. "phpunit/phpunit": "~4.8"
  720. },
  721. "suggest": {
  722. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  723. },
  724. "bin": [
  725. "bin/minifycss",
  726. "bin/minifyjs"
  727. ],
  728. "type": "library",
  729. "autoload": {
  730. "psr-4": {
  731. "MatthiasMullie\\Minify\\": "src/"
  732. }
  733. },
  734. "notification-url": "https://packagist.org/downloads/",
  735. "license": [
  736. "MIT"
  737. ],
  738. "authors": [
  739. {
  740. "name": "Matthias Mullie",
  741. "email": "minify@mullie.eu",
  742. "homepage": "http://www.mullie.eu",
  743. "role": "Developer"
  744. }
  745. ],
  746. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  747. "homepage": "http://www.minifier.org",
  748. "keywords": [
  749. "JS",
  750. "css",
  751. "javascript",
  752. "minifier",
  753. "minify"
  754. ],
  755. "time": "2020-01-21T20:21:08+00:00"
  756. },
  757. {
  758. "name": "matthiasmullie/path-converter",
  759. "version": "1.1.3",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/matthiasmullie/path-converter.git",
  763. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  768. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "ext-pcre": "*",
  773. "php": ">=5.3.0"
  774. },
  775. "require-dev": {
  776. "phpunit/phpunit": "~4.8"
  777. },
  778. "type": "library",
  779. "autoload": {
  780. "psr-4": {
  781. "MatthiasMullie\\PathConverter\\": "src/"
  782. }
  783. },
  784. "notification-url": "https://packagist.org/downloads/",
  785. "license": [
  786. "MIT"
  787. ],
  788. "authors": [
  789. {
  790. "name": "Matthias Mullie",
  791. "email": "pathconverter@mullie.eu",
  792. "homepage": "http://www.mullie.eu",
  793. "role": "Developer"
  794. }
  795. ],
  796. "description": "Relative path converter",
  797. "homepage": "http://github.com/matthiasmullie/path-converter",
  798. "keywords": [
  799. "converter",
  800. "path",
  801. "paths",
  802. "relative"
  803. ],
  804. "time": "2019-02-05T23:41:09+00:00"
  805. },
  806. {
  807. "name": "maximebf/debugbar",
  808. "version": "v1.16.3",
  809. "source": {
  810. "type": "git",
  811. "url": "https://github.com/maximebf/php-debugbar.git",
  812. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372"
  813. },
  814. "dist": {
  815. "type": "zip",
  816. "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/1a1605b8e9bacb34cc0c6278206d699772e1d372",
  817. "reference": "1a1605b8e9bacb34cc0c6278206d699772e1d372",
  818. "shasum": ""
  819. },
  820. "require": {
  821. "php": "^7.1",
  822. "psr/log": "^1.0",
  823. "symfony/var-dumper": "^2.6|^3|^4|^5"
  824. },
  825. "require-dev": {
  826. "phpunit/phpunit": "^5"
  827. },
  828. "suggest": {
  829. "kriswallsmith/assetic": "The best way to manage assets",
  830. "monolog/monolog": "Log using Monolog",
  831. "predis/predis": "Redis storage"
  832. },
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "1.16-dev"
  837. }
  838. },
  839. "autoload": {
  840. "psr-4": {
  841. "DebugBar\\": "src/DebugBar/"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "Maxime Bouroumeau-Fuseau",
  851. "email": "maxime.bouroumeau@gmail.com",
  852. "homepage": "http://maximebf.com"
  853. },
  854. {
  855. "name": "Barry vd. Heuvel",
  856. "email": "barryvdh@gmail.com"
  857. }
  858. ],
  859. "description": "Debug bar in the browser for php application",
  860. "homepage": "https://github.com/maximebf/php-debugbar",
  861. "keywords": [
  862. "debug",
  863. "debugbar"
  864. ],
  865. "time": "2020-05-06T07:06:27+00:00"
  866. },
  867. {
  868. "name": "miljar/php-exif",
  869. "version": "v0.6.5",
  870. "source": {
  871. "type": "git",
  872. "url": "https://github.com/PHPExif/php-exif.git",
  873. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9"
  874. },
  875. "dist": {
  876. "type": "zip",
  877. "url": "https://api.github.com/repos/PHPExif/php-exif/zipball/41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  878. "reference": "41f23db39d7b48e4af0e134c2e80e577c1782ac9",
  879. "shasum": ""
  880. },
  881. "require": {
  882. "php": ">=5.4"
  883. },
  884. "require-dev": {
  885. "jakub-onderka/php-parallel-lint": "^1.0",
  886. "phpmd/phpmd": "~2.2",
  887. "phpunit/phpunit": ">=4.0 <6.0",
  888. "satooshi/php-coveralls": "~0.6",
  889. "sebastian/phpcpd": "1.4.*@stable",
  890. "squizlabs/php_codesniffer": "1.4.*@stable"
  891. },
  892. "suggest": {
  893. "ext-exif": "Use exif PHP extension as adapter",
  894. "lib-exiftool": "Use perl lib exiftool as adapter"
  895. },
  896. "type": "library",
  897. "autoload": {
  898. "psr-0": {
  899. "PHPExif": "lib/"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "MIT"
  905. ],
  906. "authors": [
  907. {
  908. "name": "Tom Van Herreweghe",
  909. "homepage": "http://theanalogguy.be",
  910. "role": "Developer"
  911. }
  912. ],
  913. "description": "Object-Oriented EXIF parsing",
  914. "keywords": [
  915. "IPTC",
  916. "exif",
  917. "exiftool",
  918. "jpeg",
  919. "tiff"
  920. ],
  921. "time": "2019-02-11T13:47:52+00:00"
  922. },
  923. {
  924. "name": "monolog/monolog",
  925. "version": "1.25.5",
  926. "source": {
  927. "type": "git",
  928. "url": "https://github.com/Seldaek/monolog.git",
  929. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0"
  930. },
  931. "dist": {
  932. "type": "zip",
  933. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0",
  934. "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0",
  935. "shasum": ""
  936. },
  937. "require": {
  938. "php": ">=5.3.0",
  939. "psr/log": "~1.0"
  940. },
  941. "provide": {
  942. "psr/log-implementation": "1.0.0"
  943. },
  944. "require-dev": {
  945. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  946. "doctrine/couchdb": "~1.0@dev",
  947. "graylog2/gelf-php": "~1.0",
  948. "php-amqplib/php-amqplib": "~2.4",
  949. "php-console/php-console": "^3.1.3",
  950. "php-parallel-lint/php-parallel-lint": "^1.0",
  951. "phpunit/phpunit": "~4.5",
  952. "ruflin/elastica": ">=0.90 <3.0",
  953. "sentry/sentry": "^0.13",
  954. "swiftmailer/swiftmailer": "^5.3|^6.0"
  955. },
  956. "suggest": {
  957. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  958. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  959. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  960. "ext-mongo": "Allow sending log messages to a MongoDB server",
  961. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  962. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  963. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  964. "php-console/php-console": "Allow sending log messages to Google Chrome",
  965. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  966. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  967. "sentry/sentry": "Allow sending log messages to a Sentry server"
  968. },
  969. "type": "library",
  970. "extra": {
  971. "branch-alias": {
  972. "dev-master": "2.0.x-dev"
  973. }
  974. },
  975. "autoload": {
  976. "psr-4": {
  977. "Monolog\\": "src/Monolog"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Jordi Boggiano",
  987. "email": "j.boggiano@seld.be",
  988. "homepage": "http://seld.be"
  989. }
  990. ],
  991. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  992. "homepage": "http://github.com/Seldaek/monolog",
  993. "keywords": [
  994. "log",
  995. "logging",
  996. "psr-3"
  997. ],
  998. "time": "2020-07-23T08:35:51+00:00"
  999. },
  1000. {
  1001. "name": "nyholm/psr7",
  1002. "version": "1.3.1",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/Nyholm/psr7.git",
  1006. "reference": "21b71a31eab5c0c2caf967b9c0fd97020254ed75"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/21b71a31eab5c0c2caf967b9c0fd97020254ed75",
  1011. "reference": "21b71a31eab5c0c2caf967b9c0fd97020254ed75",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": ">=7.1",
  1016. "php-http/message-factory": "^1.0",
  1017. "psr/http-factory": "^1.0",
  1018. "psr/http-message": "^1.0"
  1019. },
  1020. "provide": {
  1021. "psr/http-factory-implementation": "1.0",
  1022. "psr/http-message-implementation": "1.0"
  1023. },
  1024. "require-dev": {
  1025. "http-interop/http-factory-tests": "dev-master",
  1026. "php-http/psr7-integration-tests": "^1.0",
  1027. "phpunit/phpunit": "^7.5",
  1028. "symfony/error-handler": "^4.4"
  1029. },
  1030. "type": "library",
  1031. "extra": {
  1032. "branch-alias": {
  1033. "dev-master": "1.0-dev"
  1034. }
  1035. },
  1036. "autoload": {
  1037. "psr-4": {
  1038. "Nyholm\\Psr7\\": "src/"
  1039. }
  1040. },
  1041. "notification-url": "https://packagist.org/downloads/",
  1042. "license": [
  1043. "MIT"
  1044. ],
  1045. "authors": [
  1046. {
  1047. "name": "Tobias Nyholm",
  1048. "email": "tobias.nyholm@gmail.com"
  1049. },
  1050. {
  1051. "name": "Martijn van der Ven",
  1052. "email": "martijn@vanderven.se"
  1053. }
  1054. ],
  1055. "description": "A fast PHP7 implementation of PSR-7",
  1056. "homepage": "http://tnyholm.se",
  1057. "keywords": [
  1058. "psr-17",
  1059. "psr-7"
  1060. ],
  1061. "time": "2020-06-13T15:59:10+00:00"
  1062. },
  1063. {
  1064. "name": "phive/twig-extensions-deferred",
  1065. "version": "v1.0.2",
  1066. "source": {
  1067. "type": "git",
  1068. "url": "https://github.com/rybakit/twig-extensions-deferred-legacy.git",
  1069. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f"
  1070. },
  1071. "dist": {
  1072. "type": "zip",
  1073. "url": "https://api.github.com/repos/rybakit/twig-extensions-deferred-legacy/zipball/5a2426d622afa74034e754ca5ea1d1ff7887627f",
  1074. "reference": "5a2426d622afa74034e754ca5ea1d1ff7887627f",
  1075. "shasum": ""
  1076. },
  1077. "require": {
  1078. "twig/twig": "~1.18"
  1079. },
  1080. "type": "library",
  1081. "autoload": {
  1082. "psr-4": {
  1083. "Phive\\Twig\\Extensions\\Deferred\\": "src/"
  1084. }
  1085. },
  1086. "notification-url": "https://packagist.org/downloads/",
  1087. "license": [
  1088. "MIT"
  1089. ],
  1090. "authors": [
  1091. {
  1092. "name": "Eugene Leonovich",
  1093. "email": "gen.work@gmail.com"
  1094. }
  1095. ],
  1096. "description": "An extension for Twig that allows to defer block rendering",
  1097. "homepage": "https://github.com/rybakit/twig-extensions-deferred",
  1098. "keywords": [
  1099. "defer",
  1100. "extension",
  1101. "lazy",
  1102. "twig"
  1103. ],
  1104. "time": "2017-03-17T21:39:21+00:00"
  1105. },
  1106. {
  1107. "name": "php-http/message-factory",
  1108. "version": "v1.0.2",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/php-http/message-factory.git",
  1112. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1117. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  1118. "shasum": ""
  1119. },
  1120. "require": {
  1121. "php": ">=5.4",
  1122. "psr/http-message": "^1.0"
  1123. },
  1124. "type": "library",
  1125. "extra": {
  1126. "branch-alias": {
  1127. "dev-master": "1.0-dev"
  1128. }
  1129. },
  1130. "autoload": {
  1131. "psr-4": {
  1132. "Http\\Message\\": "src/"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Márk Sági-Kazár",
  1142. "email": "mark.sagikazar@gmail.com"
  1143. }
  1144. ],
  1145. "description": "Factory interfaces for PSR-7 HTTP Message",
  1146. "homepage": "http://php-http.org",
  1147. "keywords": [
  1148. "factory",
  1149. "http",
  1150. "message",
  1151. "stream",
  1152. "uri"
  1153. ],
  1154. "time": "2015-12-19T14:08:53+00:00"
  1155. },
  1156. {
  1157. "name": "pimple/pimple",
  1158. "version": "v3.2.3",
  1159. "source": {
  1160. "type": "git",
  1161. "url": "https://github.com/silexphp/Pimple.git",
  1162. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  1163. },
  1164. "dist": {
  1165. "type": "zip",
  1166. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1167. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1168. "shasum": ""
  1169. },
  1170. "require": {
  1171. "php": ">=5.3.0",
  1172. "psr/container": "^1.0"
  1173. },
  1174. "require-dev": {
  1175. "symfony/phpunit-bridge": "^3.2"
  1176. },
  1177. "type": "library",
  1178. "extra": {
  1179. "branch-alias": {
  1180. "dev-master": "3.2.x-dev"
  1181. }
  1182. },
  1183. "autoload": {
  1184. "psr-0": {
  1185. "Pimple": "src/"
  1186. }
  1187. },
  1188. "notification-url": "https://packagist.org/downloads/",
  1189. "license": [
  1190. "MIT"
  1191. ],
  1192. "authors": [
  1193. {
  1194. "name": "Fabien Potencier",
  1195. "email": "fabien@symfony.com"
  1196. }
  1197. ],
  1198. "description": "Pimple, a simple Dependency Injection Container",
  1199. "homepage": "http://pimple.sensiolabs.org",
  1200. "keywords": [
  1201. "container",
  1202. "dependency injection"
  1203. ],
  1204. "time": "2018-01-21T07:42:36+00:00"
  1205. },
  1206. {
  1207. "name": "psr/cache",
  1208. "version": "1.0.1",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/php-fig/cache.git",
  1212. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1217. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1218. "shasum": ""
  1219. },
  1220. "require": {
  1221. "php": ">=5.3.0"
  1222. },
  1223. "type": "library",
  1224. "extra": {
  1225. "branch-alias": {
  1226. "dev-master": "1.0.x-dev"
  1227. }
  1228. },
  1229. "autoload": {
  1230. "psr-4": {
  1231. "Psr\\Cache\\": "src/"
  1232. }
  1233. },
  1234. "notification-url": "https://packagist.org/downloads/",
  1235. "license": [
  1236. "MIT"
  1237. ],
  1238. "authors": [
  1239. {
  1240. "name": "PHP-FIG",
  1241. "homepage": "http://www.php-fig.org/"
  1242. }
  1243. ],
  1244. "description": "Common interface for caching libraries",
  1245. "keywords": [
  1246. "cache",
  1247. "psr",
  1248. "psr-6"
  1249. ],
  1250. "time": "2016-08-06T20:24:11+00:00"
  1251. },
  1252. {
  1253. "name": "psr/container",
  1254. "version": "1.0.0",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/php-fig/container.git",
  1258. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1263. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1264. "shasum": ""
  1265. },
  1266. "require": {
  1267. "php": ">=5.3.0"
  1268. },
  1269. "type": "library",
  1270. "extra": {
  1271. "branch-alias": {
  1272. "dev-master": "1.0.x-dev"
  1273. }
  1274. },
  1275. "autoload": {
  1276. "psr-4": {
  1277. "Psr\\Container\\": "src/"
  1278. }
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "PHP-FIG",
  1287. "homepage": "http://www.php-fig.org/"
  1288. }
  1289. ],
  1290. "description": "Common Container Interface (PHP FIG PSR-11)",
  1291. "homepage": "https://github.com/php-fig/container",
  1292. "keywords": [
  1293. "PSR-11",
  1294. "container",
  1295. "container-interface",
  1296. "container-interop",
  1297. "psr"
  1298. ],
  1299. "time": "2017-02-14T16:28:37+00:00"
  1300. },
  1301. {
  1302. "name": "psr/http-factory",
  1303. "version": "1.0.1",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/php-fig/http-factory.git",
  1307. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1312. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1313. "shasum": ""
  1314. },
  1315. "require": {
  1316. "php": ">=7.0.0",
  1317. "psr/http-message": "^1.0"
  1318. },
  1319. "type": "library",
  1320. "extra": {
  1321. "branch-alias": {
  1322. "dev-master": "1.0.x-dev"
  1323. }
  1324. },
  1325. "autoload": {
  1326. "psr-4": {
  1327. "Psr\\Http\\Message\\": "src/"
  1328. }
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "MIT"
  1333. ],
  1334. "authors": [
  1335. {
  1336. "name": "PHP-FIG",
  1337. "homepage": "http://www.php-fig.org/"
  1338. }
  1339. ],
  1340. "description": "Common interfaces for PSR-7 HTTP message factories",
  1341. "keywords": [
  1342. "factory",
  1343. "http",
  1344. "message",
  1345. "psr",
  1346. "psr-17",
  1347. "psr-7",
  1348. "request",
  1349. "response"
  1350. ],
  1351. "time": "2019-04-30T12:38:16+00:00"
  1352. },
  1353. {
  1354. "name": "psr/http-message",
  1355. "version": "1.0.1",
  1356. "source": {
  1357. "type": "git",
  1358. "url": "https://github.com/php-fig/http-message.git",
  1359. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1360. },
  1361. "dist": {
  1362. "type": "zip",
  1363. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1364. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1365. "shasum": ""
  1366. },
  1367. "require": {
  1368. "php": ">=5.3.0"
  1369. },
  1370. "type": "library",
  1371. "extra": {
  1372. "branch-alias": {
  1373. "dev-master": "1.0.x-dev"
  1374. }
  1375. },
  1376. "autoload": {
  1377. "psr-4": {
  1378. "Psr\\Http\\Message\\": "src/"
  1379. }
  1380. },
  1381. "notification-url": "https://packagist.org/downloads/",
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "authors": [
  1386. {
  1387. "name": "PHP-FIG",
  1388. "homepage": "http://www.php-fig.org/"
  1389. }
  1390. ],
  1391. "description": "Common interface for HTTP messages",
  1392. "homepage": "https://github.com/php-fig/http-message",
  1393. "keywords": [
  1394. "http",
  1395. "http-message",
  1396. "psr",
  1397. "psr-7",
  1398. "request",
  1399. "response"
  1400. ],
  1401. "time": "2016-08-06T14:39:51+00:00"
  1402. },
  1403. {
  1404. "name": "psr/http-server-handler",
  1405. "version": "1.0.1",
  1406. "source": {
  1407. "type": "git",
  1408. "url": "https://github.com/php-fig/http-server-handler.git",
  1409. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1410. },
  1411. "dist": {
  1412. "type": "zip",
  1413. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1414. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1415. "shasum": ""
  1416. },
  1417. "require": {
  1418. "php": ">=7.0",
  1419. "psr/http-message": "^1.0"
  1420. },
  1421. "type": "library",
  1422. "extra": {
  1423. "branch-alias": {
  1424. "dev-master": "1.0.x-dev"
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Psr\\Http\\Server\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "authors": [
  1437. {
  1438. "name": "PHP-FIG",
  1439. "homepage": "http://www.php-fig.org/"
  1440. }
  1441. ],
  1442. "description": "Common interface for HTTP server-side request handler",
  1443. "keywords": [
  1444. "handler",
  1445. "http",
  1446. "http-interop",
  1447. "psr",
  1448. "psr-15",
  1449. "psr-7",
  1450. "request",
  1451. "response",
  1452. "server"
  1453. ],
  1454. "time": "2018-10-30T16:46:14+00:00"
  1455. },
  1456. {
  1457. "name": "psr/http-server-middleware",
  1458. "version": "1.0.1",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/php-fig/http-server-middleware.git",
  1462. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1467. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "php": ">=7.0",
  1472. "psr/http-message": "^1.0",
  1473. "psr/http-server-handler": "^1.0"
  1474. },
  1475. "type": "library",
  1476. "extra": {
  1477. "branch-alias": {
  1478. "dev-master": "1.0.x-dev"
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Psr\\Http\\Server\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "PHP-FIG",
  1493. "homepage": "http://www.php-fig.org/"
  1494. }
  1495. ],
  1496. "description": "Common interface for HTTP server-side middleware",
  1497. "keywords": [
  1498. "http",
  1499. "http-interop",
  1500. "middleware",
  1501. "psr",
  1502. "psr-15",
  1503. "psr-7",
  1504. "request",
  1505. "response"
  1506. ],
  1507. "time": "2018-10-30T17:12:04+00:00"
  1508. },
  1509. {
  1510. "name": "psr/log",
  1511. "version": "1.1.3",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/php-fig/log.git",
  1515. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1520. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1521. "shasum": ""
  1522. },
  1523. "require": {
  1524. "php": ">=5.3.0"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "branch-alias": {
  1529. "dev-master": "1.1.x-dev"
  1530. }
  1531. },
  1532. "autoload": {
  1533. "psr-4": {
  1534. "Psr\\Log\\": "Psr/Log/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "PHP-FIG",
  1544. "homepage": "http://www.php-fig.org/"
  1545. }
  1546. ],
  1547. "description": "Common interface for logging libraries",
  1548. "homepage": "https://github.com/php-fig/log",
  1549. "keywords": [
  1550. "log",
  1551. "psr",
  1552. "psr-3"
  1553. ],
  1554. "time": "2020-03-23T09:12:05+00:00"
  1555. },
  1556. {
  1557. "name": "psr/simple-cache",
  1558. "version": "1.0.1",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/php-fig/simple-cache.git",
  1562. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1567. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.0"
  1572. },
  1573. "type": "library",
  1574. "extra": {
  1575. "branch-alias": {
  1576. "dev-master": "1.0.x-dev"
  1577. }
  1578. },
  1579. "autoload": {
  1580. "psr-4": {
  1581. "Psr\\SimpleCache\\": "src/"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "PHP-FIG",
  1591. "homepage": "http://www.php-fig.org/"
  1592. }
  1593. ],
  1594. "description": "Common interfaces for simple caching",
  1595. "keywords": [
  1596. "cache",
  1597. "caching",
  1598. "psr",
  1599. "psr-16",
  1600. "simple-cache"
  1601. ],
  1602. "time": "2017-10-23T01:57:42+00:00"
  1603. },
  1604. {
  1605. "name": "ralouphie/getallheaders",
  1606. "version": "3.0.3",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/ralouphie/getallheaders.git",
  1610. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1615. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1616. "shasum": ""
  1617. },
  1618. "require": {
  1619. "php": ">=5.6"
  1620. },
  1621. "require-dev": {
  1622. "php-coveralls/php-coveralls": "^2.1",
  1623. "phpunit/phpunit": "^5 || ^6.5"
  1624. },
  1625. "type": "library",
  1626. "autoload": {
  1627. "files": [
  1628. "src/getallheaders.php"
  1629. ]
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "authors": [
  1636. {
  1637. "name": "Ralph Khattar",
  1638. "email": "ralph.khattar@gmail.com"
  1639. }
  1640. ],
  1641. "description": "A polyfill for getallheaders.",
  1642. "time": "2019-03-08T08:55:37+00:00"
  1643. },
  1644. {
  1645. "name": "rockettheme/toolbox",
  1646. "version": "1.4.7",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/rockettheme/toolbox.git",
  1650. "reference": "6a86bc0607884d2194260b6b72d67333e0141585"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/rockettheme/toolbox/zipball/6a86bc0607884d2194260b6b72d67333e0141585",
  1655. "reference": "6a86bc0607884d2194260b6b72d67333e0141585",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "ext-json": "*",
  1660. "php": ">=5.4.0",
  1661. "pimple/pimple": "~3.0",
  1662. "symfony/event-dispatcher": ">2.5",
  1663. "symfony/yaml": ">2.5"
  1664. },
  1665. "require-dev": {
  1666. "phpunit/phpunit": "~6"
  1667. },
  1668. "type": "library",
  1669. "autoload": {
  1670. "psr-4": {
  1671. "RocketTheme\\Toolbox\\ArrayTraits\\": "ArrayTraits/src",
  1672. "RocketTheme\\Toolbox\\Blueprints\\": "Blueprints/src",
  1673. "RocketTheme\\Toolbox\\Compat\\": "Compat/src",
  1674. "RocketTheme\\Toolbox\\DI\\": "DI/src",
  1675. "RocketTheme\\Toolbox\\Event\\": "Event/src",
  1676. "RocketTheme\\Toolbox\\File\\": "File/src",
  1677. "RocketTheme\\Toolbox\\ResourceLocator\\": "ResourceLocator/src",
  1678. "RocketTheme\\Toolbox\\Session\\": "Session/src",
  1679. "RocketTheme\\Toolbox\\StreamWrapper\\": "StreamWrapper/src"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "description": "RocketTheme Toolbox Library",
  1687. "homepage": "http://www.rockettheme.com",
  1688. "keywords": [
  1689. "php",
  1690. "rockettheme"
  1691. ],
  1692. "time": "2020-03-19T18:24:40+00:00"
  1693. },
  1694. {
  1695. "name": "seld/cli-prompt",
  1696. "version": "1.0.3",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/Seldaek/cli-prompt.git",
  1700. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/Seldaek/cli-prompt/zipball/a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1705. "reference": "a19a7376a4689d4d94cab66ab4f3c816019ba8dd",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "php": ">=5.3"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "1.x-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "psr-4": {
  1719. "Seld\\CliPrompt\\": "src/"
  1720. }
  1721. },
  1722. "notification-url": "https://packagist.org/downloads/",
  1723. "license": [
  1724. "MIT"
  1725. ],
  1726. "authors": [
  1727. {
  1728. "name": "Jordi Boggiano",
  1729. "email": "j.boggiano@seld.be"
  1730. }
  1731. ],
  1732. "description": "Allows you to prompt for user input on the command line, and optionally hide the characters they type",
  1733. "keywords": [
  1734. "cli",
  1735. "console",
  1736. "hidden",
  1737. "input",
  1738. "prompt"
  1739. ],
  1740. "time": "2017-03-18T11:32:45+00:00"
  1741. },
  1742. {
  1743. "name": "symfony/console",
  1744. "version": "v4.2.12",
  1745. "source": {
  1746. "type": "git",
  1747. "url": "https://github.com/symfony/console.git",
  1748. "reference": "fc2e274aade6567a750551942094b2145ade9b6c"
  1749. },
  1750. "dist": {
  1751. "type": "zip",
  1752. "url": "https://api.github.com/repos/symfony/console/zipball/fc2e274aade6567a750551942094b2145ade9b6c",
  1753. "reference": "fc2e274aade6567a750551942094b2145ade9b6c",
  1754. "shasum": ""
  1755. },
  1756. "require": {
  1757. "php": "^7.1.3",
  1758. "symfony/contracts": "^1.0",
  1759. "symfony/polyfill-mbstring": "~1.0"
  1760. },
  1761. "conflict": {
  1762. "symfony/dependency-injection": "<3.4",
  1763. "symfony/process": "<3.3"
  1764. },
  1765. "provide": {
  1766. "psr/log-implementation": "1.0"
  1767. },
  1768. "require-dev": {
  1769. "psr/log": "~1.0",
  1770. "symfony/config": "~3.4|~4.0",
  1771. "symfony/dependency-injection": "~3.4|~4.0",
  1772. "symfony/event-dispatcher": "~3.4|~4.0",
  1773. "symfony/lock": "~3.4|~4.0",
  1774. "symfony/process": "~3.4|~4.0"
  1775. },
  1776. "suggest": {
  1777. "psr/log": "For using the console logger",
  1778. "symfony/event-dispatcher": "",
  1779. "symfony/lock": "",
  1780. "symfony/process": ""
  1781. },
  1782. "type": "library",
  1783. "extra": {
  1784. "branch-alias": {
  1785. "dev-master": "4.2-dev"
  1786. }
  1787. },
  1788. "autoload": {
  1789. "psr-4": {
  1790. "Symfony\\Component\\Console\\": ""
  1791. },
  1792. "exclude-from-classmap": [
  1793. "/Tests/"
  1794. ]
  1795. },
  1796. "notification-url": "https://packagist.org/downloads/",
  1797. "license": [
  1798. "MIT"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Fabien Potencier",
  1803. "email": "fabien@symfony.com"
  1804. },
  1805. {
  1806. "name": "Symfony Community",
  1807. "homepage": "https://symfony.com/contributors"
  1808. }
  1809. ],
  1810. "description": "Symfony Console Component",
  1811. "homepage": "https://symfony.com",
  1812. "time": "2019-07-24T17:13:20+00:00"
  1813. },
  1814. {
  1815. "name": "symfony/contracts",
  1816. "version": "v1.1.10",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://github.com/symfony/contracts.git",
  1820. "reference": "011c20407c4b99d454f44021d023fb39ce23b73d"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://api.github.com/repos/symfony/contracts/zipball/011c20407c4b99d454f44021d023fb39ce23b73d",
  1825. "reference": "011c20407c4b99d454f44021d023fb39ce23b73d",
  1826. "shasum": ""
  1827. },
  1828. "require": {
  1829. "php": ">=7.1.3",
  1830. "psr/cache": "^1.0",
  1831. "psr/container": "^1.0"
  1832. },
  1833. "replace": {
  1834. "symfony/cache-contracts": "self.version",
  1835. "symfony/event-dispatcher-contracts": "self.version",
  1836. "symfony/http-client-contracts": "self.version",
  1837. "symfony/service-contracts": "self.version",
  1838. "symfony/translation-contracts": "self.version"
  1839. },
  1840. "require-dev": {
  1841. "symfony/polyfill-intl-idn": "^1.10"
  1842. },
  1843. "suggest": {
  1844. "psr/event-dispatcher": "When using the EventDispatcher contracts",
  1845. "symfony/cache-implementation": "",
  1846. "symfony/event-dispatcher-implementation": "",
  1847. "symfony/http-client-implementation": "",
  1848. "symfony/service-implementation": "",
  1849. "symfony/translation-implementation": ""
  1850. },
  1851. "type": "library",
  1852. "extra": {
  1853. "branch-alias": {
  1854. "dev-master": "1.1-dev"
  1855. }
  1856. },
  1857. "autoload": {
  1858. "psr-4": {
  1859. "Symfony\\Contracts\\": ""
  1860. },
  1861. "exclude-from-classmap": [
  1862. "**/Tests/"
  1863. ]
  1864. },
  1865. "notification-url": "https://packagist.org/downloads/",
  1866. "license": [
  1867. "MIT"
  1868. ],
  1869. "authors": [
  1870. {
  1871. "name": "Nicolas Grekas",
  1872. "email": "p@tchwork.com"
  1873. },
  1874. {
  1875. "name": "Symfony Community",
  1876. "homepage": "https://symfony.com/contributors"
  1877. }
  1878. ],
  1879. "description": "A set of abstractions extracted out of the Symfony components",
  1880. "homepage": "https://symfony.com",
  1881. "keywords": [
  1882. "abstractions",
  1883. "contracts",
  1884. "decoupling",
  1885. "interfaces",
  1886. "interoperability",
  1887. "standards"
  1888. ],
  1889. "time": "2020-09-02T16:08:58+00:00"
  1890. },
  1891. {
  1892. "name": "symfony/event-dispatcher",
  1893. "version": "v4.2.12",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/symfony/event-dispatcher.git",
  1897. "reference": "852548c7c704f14d2f6700c8d872a05bd2028732"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/852548c7c704f14d2f6700c8d872a05bd2028732",
  1902. "reference": "852548c7c704f14d2f6700c8d872a05bd2028732",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "php": "^7.1.3",
  1907. "symfony/contracts": "^1.0"
  1908. },
  1909. "conflict": {
  1910. "symfony/dependency-injection": "<3.4"
  1911. },
  1912. "require-dev": {
  1913. "psr/log": "~1.0",
  1914. "symfony/config": "~3.4|~4.0",
  1915. "symfony/dependency-injection": "~3.4|~4.0",
  1916. "symfony/expression-language": "~3.4|~4.0",
  1917. "symfony/stopwatch": "~3.4|~4.0"
  1918. },
  1919. "suggest": {
  1920. "symfony/dependency-injection": "",
  1921. "symfony/http-kernel": ""
  1922. },
  1923. "type": "library",
  1924. "extra": {
  1925. "branch-alias": {
  1926. "dev-master": "4.2-dev"
  1927. }
  1928. },
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Symfony\\Component\\EventDispatcher\\": ""
  1932. },
  1933. "exclude-from-classmap": [
  1934. "/Tests/"
  1935. ]
  1936. },
  1937. "notification-url": "https://packagist.org/downloads/",
  1938. "license": [
  1939. "MIT"
  1940. ],
  1941. "authors": [
  1942. {
  1943. "name": "Fabien Potencier",
  1944. "email": "fabien@symfony.com"
  1945. },
  1946. {
  1947. "name": "Symfony Community",
  1948. "homepage": "https://symfony.com/contributors"
  1949. }
  1950. ],
  1951. "description": "Symfony EventDispatcher Component",
  1952. "homepage": "https://symfony.com",
  1953. "time": "2019-06-26T06:46:55+00:00"
  1954. },
  1955. {
  1956. "name": "symfony/polyfill-ctype",
  1957. "version": "v1.20.0",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://github.com/symfony/polyfill-ctype.git",
  1961. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  1966. "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41",
  1967. "shasum": ""
  1968. },
  1969. "require": {
  1970. "php": ">=7.1"
  1971. },
  1972. "suggest": {
  1973. "ext-ctype": "For best performance"
  1974. },
  1975. "type": "library",
  1976. "extra": {
  1977. "branch-alias": {
  1978. "dev-main": "1.20-dev"
  1979. },
  1980. "thanks": {
  1981. "name": "symfony/polyfill",
  1982. "url": "https://github.com/symfony/polyfill"
  1983. }
  1984. },
  1985. "autoload": {
  1986. "psr-4": {
  1987. "Symfony\\Polyfill\\Ctype\\": ""
  1988. },
  1989. "files": [
  1990. "bootstrap.php"
  1991. ]
  1992. },
  1993. "notification-url": "https://packagist.org/downloads/",
  1994. "license": [
  1995. "MIT"
  1996. ],
  1997. "authors": [
  1998. {
  1999. "name": "Gert de Pagter",
  2000. "email": "BackEndTea@gmail.com"
  2001. },
  2002. {
  2003. "name": "Symfony Community",
  2004. "homepage": "https://symfony.com/contributors"
  2005. }
  2006. ],
  2007. "description": "Symfony polyfill for ctype functions",
  2008. "homepage": "https://symfony.com",
  2009. "keywords": [
  2010. "compatibility",
  2011. "ctype",
  2012. "polyfill",
  2013. "portable"
  2014. ],
  2015. "funding": [
  2016. {
  2017. "url": "https://symfony.com/sponsor",
  2018. "type": "custom"
  2019. },
  2020. {
  2021. "url": "https://github.com/fabpot",
  2022. "type": "github"
  2023. },
  2024. {
  2025. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2026. "type": "tidelift"
  2027. }
  2028. ],
  2029. "time": "2020-10-23T14:02:19+00:00"
  2030. },
  2031. {
  2032. "name": "symfony/polyfill-iconv",
  2033. "version": "v1.20.0",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://github.com/symfony/polyfill-iconv.git",
  2037. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c536646fdb4f29104dd26effc2fdcb9a5b085024",
  2042. "reference": "c536646fdb4f29104dd26effc2fdcb9a5b085024",
  2043. "shasum": ""
  2044. },
  2045. "require": {
  2046. "php": ">=7.1"
  2047. },
  2048. "suggest": {
  2049. "ext-iconv": "For best performance"
  2050. },
  2051. "type": "library",
  2052. "extra": {
  2053. "branch-alias": {
  2054. "dev-main": "1.20-dev"
  2055. },
  2056. "thanks": {
  2057. "name": "symfony/polyfill",
  2058. "url": "https://github.com/symfony/polyfill"
  2059. }
  2060. },
  2061. "autoload": {
  2062. "psr-4": {
  2063. "Symfony\\Polyfill\\Iconv\\": ""
  2064. },
  2065. "files": [
  2066. "bootstrap.php"
  2067. ]
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Nicolas Grekas",
  2076. "email": "p@tchwork.com"
  2077. },
  2078. {
  2079. "name": "Symfony Community",
  2080. "homepage": "https://symfony.com/contributors"
  2081. }
  2082. ],
  2083. "description": "Symfony polyfill for the Iconv extension",
  2084. "homepage": "https://symfony.com",
  2085. "keywords": [
  2086. "compatibility",
  2087. "iconv",
  2088. "polyfill",
  2089. "portable",
  2090. "shim"
  2091. ],
  2092. "funding": [
  2093. {
  2094. "url": "https://symfony.com/sponsor",
  2095. "type": "custom"
  2096. },
  2097. {
  2098. "url": "https://github.com/fabpot",
  2099. "type": "github"
  2100. },
  2101. {
  2102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2103. "type": "tidelift"
  2104. }
  2105. ],
  2106. "time": "2020-10-23T14:02:19+00:00"
  2107. },
  2108. {
  2109. "name": "symfony/polyfill-mbstring",
  2110. "version": "v1.20.0",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2114. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531",
  2119. "reference": "39d483bdf39be819deabf04ec872eb0b2410b531",
  2120. "shasum": ""
  2121. },
  2122. "require": {
  2123. "php": ">=7.1"
  2124. },
  2125. "suggest": {
  2126. "ext-mbstring": "For best performance"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "branch-alias": {
  2131. "dev-main": "1.20-dev"
  2132. },
  2133. "thanks": {
  2134. "name": "symfony/polyfill",
  2135. "url": "https://github.com/symfony/polyfill"
  2136. }
  2137. },
  2138. "autoload": {
  2139. "psr-4": {
  2140. "Symfony\\Polyfill\\Mbstring\\": ""
  2141. },
  2142. "files": [
  2143. "bootstrap.php"
  2144. ]
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Nicolas Grekas",
  2153. "email": "p@tchwork.com"
  2154. },
  2155. {
  2156. "name": "Symfony Community",
  2157. "homepage": "https://symfony.com/contributors"
  2158. }
  2159. ],
  2160. "description": "Symfony polyfill for the Mbstring extension",
  2161. "homepage": "https://symfony.com",
  2162. "keywords": [
  2163. "compatibility",
  2164. "mbstring",
  2165. "polyfill",
  2166. "portable",
  2167. "shim"
  2168. ],
  2169. "funding": [
  2170. {
  2171. "url": "https://symfony.com/sponsor",
  2172. "type": "custom"
  2173. },
  2174. {
  2175. "url": "https://github.com/fabpot",
  2176. "type": "github"
  2177. },
  2178. {
  2179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2180. "type": "tidelift"
  2181. }
  2182. ],
  2183. "time": "2020-10-23T14:02:19+00:00"
  2184. },
  2185. {
  2186. "name": "symfony/polyfill-php72",
  2187. "version": "v1.20.0",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/symfony/polyfill-php72.git",
  2191. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930",
  2196. "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930",
  2197. "shasum": ""
  2198. },
  2199. "require": {
  2200. "php": ">=7.1"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-main": "1.20-dev"
  2206. },
  2207. "thanks": {
  2208. "name": "symfony/polyfill",
  2209. "url": "https://github.com/symfony/polyfill"
  2210. }
  2211. },
  2212. "autoload": {
  2213. "psr-4": {
  2214. "Symfony\\Polyfill\\Php72\\": ""
  2215. },
  2216. "files": [
  2217. "bootstrap.php"
  2218. ]
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Nicolas Grekas",
  2227. "email": "p@tchwork.com"
  2228. },
  2229. {
  2230. "name": "Symfony Community",
  2231. "homepage": "https://symfony.com/contributors"
  2232. }
  2233. ],
  2234. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2235. "homepage": "https://symfony.com",
  2236. "keywords": [
  2237. "compatibility",
  2238. "polyfill",
  2239. "portable",
  2240. "shim"
  2241. ],
  2242. "funding": [
  2243. {
  2244. "url": "https://symfony.com/sponsor",
  2245. "type": "custom"
  2246. },
  2247. {
  2248. "url": "https://github.com/fabpot",
  2249. "type": "github"
  2250. },
  2251. {
  2252. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2253. "type": "tidelift"
  2254. }
  2255. ],
  2256. "time": "2020-10-23T14:02:19+00:00"
  2257. },
  2258. {
  2259. "name": "symfony/polyfill-php73",
  2260. "version": "v1.20.0",
  2261. "source": {
  2262. "type": "git",
  2263. "url": "https://github.com/symfony/polyfill-php73.git",
  2264. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed"
  2265. },
  2266. "dist": {
  2267. "type": "zip",
  2268. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/8ff431c517be11c78c48a39a66d37431e26a6bed",
  2269. "reference": "8ff431c517be11c78c48a39a66d37431e26a6bed",
  2270. "shasum": ""
  2271. },
  2272. "require": {
  2273. "php": ">=7.1"
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "branch-alias": {
  2278. "dev-main": "1.20-dev"
  2279. },
  2280. "thanks": {
  2281. "name": "symfony/polyfill",
  2282. "url": "https://github.com/symfony/polyfill"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Symfony\\Polyfill\\Php73\\": ""
  2288. },
  2289. "files": [
  2290. "bootstrap.php"
  2291. ],
  2292. "classmap": [
  2293. "Resources/stubs"
  2294. ]
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Nicolas Grekas",
  2303. "email": "p@tchwork.com"
  2304. },
  2305. {
  2306. "name": "Symfony Community",
  2307. "homepage": "https://symfony.com/contributors"
  2308. }
  2309. ],
  2310. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2311. "homepage": "https://symfony.com",
  2312. "keywords": [
  2313. "compatibility",
  2314. "polyfill",
  2315. "portable",
  2316. "shim"
  2317. ],
  2318. "funding": [
  2319. {
  2320. "url": "https://symfony.com/sponsor",
  2321. "type": "custom"
  2322. },
  2323. {
  2324. "url": "https://github.com/fabpot",
  2325. "type": "github"
  2326. },
  2327. {
  2328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2329. "type": "tidelift"
  2330. }
  2331. ],
  2332. "time": "2020-10-23T14:02:19+00:00"
  2333. },
  2334. {
  2335. "name": "symfony/process",
  2336. "version": "v4.2.12",
  2337. "source": {
  2338. "type": "git",
  2339. "url": "https://github.com/symfony/process.git",
  2340. "reference": "808a4be7e0dd7fcb6a2b1ed2ba22dd581402c5e2"
  2341. },
  2342. "dist": {
  2343. "type": "zip",
  2344. "url": "https://api.github.com/repos/symfony/process/zipball/808a4be7e0dd7fcb6a2b1ed2ba22dd581402c5e2",
  2345. "reference": "808a4be7e0dd7fcb6a2b1ed2ba22dd581402c5e2",
  2346. "shasum": ""
  2347. },
  2348. "require": {
  2349. "php": "^7.1.3"
  2350. },
  2351. "type": "library",
  2352. "extra": {
  2353. "branch-alias": {
  2354. "dev-master": "4.2-dev"
  2355. }
  2356. },
  2357. "autoload": {
  2358. "psr-4": {
  2359. "Symfony\\Component\\Process\\": ""
  2360. },
  2361. "exclude-from-classmap": [
  2362. "/Tests/"
  2363. ]
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Fabien Potencier",
  2372. "email": "fabien@symfony.com"
  2373. },
  2374. {
  2375. "name": "Symfony Community",
  2376. "homepage": "https://symfony.com/contributors"
  2377. }
  2378. ],
  2379. "description": "Symfony Process Component",
  2380. "homepage": "https://symfony.com",
  2381. "time": "2019-05-30T16:06:08+00:00"
  2382. },
  2383. {
  2384. "name": "symfony/var-dumper",
  2385. "version": "v4.2.12",
  2386. "source": {
  2387. "type": "git",
  2388. "url": "https://github.com/symfony/var-dumper.git",
  2389. "reference": "4e18e041a477edbb8c54e053f179672f9413816c"
  2390. },
  2391. "dist": {
  2392. "type": "zip",
  2393. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4e18e041a477edbb8c54e053f179672f9413816c",
  2394. "reference": "4e18e041a477edbb8c54e053f179672f9413816c",
  2395. "shasum": ""
  2396. },
  2397. "require": {
  2398. "php": "^7.1.3",
  2399. "symfony/polyfill-mbstring": "~1.0",
  2400. "symfony/polyfill-php72": "~1.5"
  2401. },
  2402. "conflict": {
  2403. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2404. "symfony/console": "<3.4"
  2405. },
  2406. "require-dev": {
  2407. "ext-iconv": "*",
  2408. "symfony/console": "~3.4|~4.0",
  2409. "symfony/process": "~3.4|~4.0",
  2410. "twig/twig": "~1.34|~2.4"
  2411. },
  2412. "suggest": {
  2413. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2414. "ext-intl": "To show region name in time zone dump",
  2415. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2416. },
  2417. "bin": [
  2418. "Resources/bin/var-dump-server"
  2419. ],
  2420. "type": "library",
  2421. "extra": {
  2422. "branch-alias": {
  2423. "dev-master": "4.2-dev"
  2424. }
  2425. },
  2426. "autoload": {
  2427. "files": [
  2428. "Resources/functions/dump.php"
  2429. ],
  2430. "psr-4": {
  2431. "Symfony\\Component\\VarDumper\\": ""
  2432. },
  2433. "exclude-from-classmap": [
  2434. "/Tests/"
  2435. ]
  2436. },
  2437. "notification-url": "https://packagist.org/downloads/",
  2438. "license": [
  2439. "MIT"
  2440. ],
  2441. "authors": [
  2442. {
  2443. "name": "Nicolas Grekas",
  2444. "email": "p@tchwork.com"
  2445. },
  2446. {
  2447. "name": "Symfony Community",
  2448. "homepage": "https://symfony.com/contributors"
  2449. }
  2450. ],
  2451. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2452. "homepage": "https://symfony.com",
  2453. "keywords": [
  2454. "debug",
  2455. "dump"
  2456. ],
  2457. "time": "2019-07-27T06:42:33+00:00"
  2458. },
  2459. {
  2460. "name": "symfony/yaml",
  2461. "version": "v4.2.12",
  2462. "source": {
  2463. "type": "git",
  2464. "url": "https://github.com/symfony/yaml.git",
  2465. "reference": "9468fef6f1c740b96935e9578560a9e9189ca154"
  2466. },
  2467. "dist": {
  2468. "type": "zip",
  2469. "url": "https://api.github.com/repos/symfony/yaml/zipball/9468fef6f1c740b96935e9578560a9e9189ca154",
  2470. "reference": "9468fef6f1c740b96935e9578560a9e9189ca154",
  2471. "shasum": ""
  2472. },
  2473. "require": {
  2474. "php": "^7.1.3",
  2475. "symfony/polyfill-ctype": "~1.8"
  2476. },
  2477. "conflict": {
  2478. "symfony/console": "<3.4"
  2479. },
  2480. "require-dev": {
  2481. "symfony/console": "~3.4|~4.0"
  2482. },
  2483. "suggest": {
  2484. "symfony/console": "For validating YAML files using the lint command"
  2485. },
  2486. "type": "library",
  2487. "extra": {
  2488. "branch-alias": {
  2489. "dev-master": "4.2-dev"
  2490. }
  2491. },
  2492. "autoload": {
  2493. "psr-4": {
  2494. "Symfony\\Component\\Yaml\\": ""
  2495. },
  2496. "exclude-from-classmap": [
  2497. "/Tests/"
  2498. ]
  2499. },
  2500. "notification-url": "https://packagist.org/downloads/",
  2501. "license": [
  2502. "MIT"
  2503. ],
  2504. "authors": [
  2505. {
  2506. "name": "Fabien Potencier",
  2507. "email": "fabien@symfony.com"
  2508. },
  2509. {
  2510. "name": "Symfony Community",
  2511. "homepage": "https://symfony.com/contributors"
  2512. }
  2513. ],
  2514. "description": "Symfony Yaml Component",
  2515. "homepage": "https://symfony.com",
  2516. "time": "2019-07-24T14:47:26+00:00"
  2517. },
  2518. {
  2519. "name": "twig/twig",
  2520. "version": "v1.43.1",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://github.com/twigphp/Twig.git",
  2524. "reference": "2311602f6a208715252febe682fa7c38e56a3373"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://api.github.com/repos/twigphp/Twig/zipball/2311602f6a208715252febe682fa7c38e56a3373",
  2529. "reference": "2311602f6a208715252febe682fa7c38e56a3373",
  2530. "shasum": ""
  2531. },
  2532. "require": {
  2533. "php": ">=7.1.3",
  2534. "symfony/polyfill-ctype": "^1.8"
  2535. },
  2536. "require-dev": {
  2537. "psr/container": "^1.0",
  2538. "symfony/phpunit-bridge": "^4.4.9|^5.0.9"
  2539. },
  2540. "type": "library",
  2541. "extra": {
  2542. "branch-alias": {
  2543. "dev-master": "1.43-dev"
  2544. }
  2545. },
  2546. "autoload": {
  2547. "psr-0": {
  2548. "Twig_": "lib/"
  2549. },
  2550. "psr-4": {
  2551. "Twig\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "BSD-3-Clause"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "Fabien Potencier",
  2561. "email": "fabien@symfony.com",
  2562. "homepage": "http://fabien.potencier.org",
  2563. "role": "Lead Developer"
  2564. },
  2565. {
  2566. "name": "Twig Team",
  2567. "role": "Contributors"
  2568. },
  2569. {
  2570. "name": "Armin Ronacher",
  2571. "email": "armin.ronacher@active-4.com",
  2572. "role": "Project Founder"
  2573. }
  2574. ],
  2575. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2576. "homepage": "https://twig.symfony.com",
  2577. "keywords": [
  2578. "templating"
  2579. ],
  2580. "time": "2020-08-05T15:05:05+00:00"
  2581. },
  2582. {
  2583. "name": "willdurand/negotiation",
  2584. "version": "2.x-dev",
  2585. "source": {
  2586. "type": "git",
  2587. "url": "https://github.com/willdurand/Negotiation.git",
  2588. "reference": "cf78c9ac47e8e1e141bf609c71e9e2c3a7780dcf"
  2589. },
  2590. "dist": {
  2591. "type": "zip",
  2592. "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/cf78c9ac47e8e1e141bf609c71e9e2c3a7780dcf",
  2593. "reference": "cf78c9ac47e8e1e141bf609c71e9e2c3a7780dcf",
  2594. "shasum": ""
  2595. },
  2596. "require": {
  2597. "php": ">=5.4.0"
  2598. },
  2599. "require-dev": {
  2600. "phpunit/phpunit": "~4.5"
  2601. },
  2602. "type": "library",
  2603. "extra": {
  2604. "branch-alias": {
  2605. "dev-master": "2.3-dev"
  2606. }
  2607. },
  2608. "autoload": {
  2609. "psr-4": {
  2610. "Negotiation\\": "src/Negotiation"
  2611. }
  2612. },
  2613. "notification-url": "https://packagist.org/downloads/",
  2614. "license": [
  2615. "MIT"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "William Durand",
  2620. "email": "will+git@drnd.me"
  2621. }
  2622. ],
  2623. "description": "Content Negotiation tools for PHP provided as a standalone library.",
  2624. "homepage": "http://williamdurand.fr/Negotiation/",
  2625. "keywords": [
  2626. "accept",
  2627. "content",
  2628. "format",
  2629. "header",
  2630. "negotiation"
  2631. ],
  2632. "time": "2017-08-04T15:54:30+00:00"
  2633. }
  2634. ],
  2635. "packages-dev": [
  2636. {
  2637. "name": "behat/gherkin",
  2638. "version": "v4.6.2",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://github.com/Behat/Gherkin.git",
  2642. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31",
  2647. "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31",
  2648. "shasum": ""
  2649. },
  2650. "require": {
  2651. "php": ">=5.3.1"
  2652. },
  2653. "require-dev": {
  2654. "phpunit/phpunit": "~4.5|~5",
  2655. "symfony/phpunit-bridge": "~2.7|~3|~4",
  2656. "symfony/yaml": "~2.3|~3|~4"
  2657. },
  2658. "suggest": {
  2659. "symfony/yaml": "If you want to parse features, represented in YAML files"
  2660. },
  2661. "type": "library",
  2662. "extra": {
  2663. "branch-alias": {
  2664. "dev-master": "4.4-dev"
  2665. }
  2666. },
  2667. "autoload": {
  2668. "psr-0": {
  2669. "Behat\\Gherkin": "src/"
  2670. }
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Konstantin Kudryashov",
  2679. "email": "ever.zet@gmail.com",
  2680. "homepage": "http://everzet.com"
  2681. }
  2682. ],
  2683. "description": "Gherkin DSL parser for PHP 5.3",
  2684. "homepage": "http://behat.org/",
  2685. "keywords": [
  2686. "BDD",
  2687. "Behat",
  2688. "Cucumber",
  2689. "DSL",
  2690. "gherkin",
  2691. "parser"
  2692. ],
  2693. "time": "2020-03-17T14:03:26+00:00"
  2694. },
  2695. {
  2696. "name": "codeception/codeception",
  2697. "version": "2.5.6",
  2698. "source": {
  2699. "type": "git",
  2700. "url": "https://github.com/Codeception/Codeception.git",
  2701. "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98"
  2702. },
  2703. "dist": {
  2704. "type": "zip",
  2705. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b83a9338296e706fab2ceb49de8a352fbca3dc98",
  2706. "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98",
  2707. "shasum": ""
  2708. },
  2709. "require": {
  2710. "behat/gherkin": "^4.4.0",
  2711. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  2712. "codeception/stub": "^2.0",
  2713. "ext-curl": "*",
  2714. "ext-json": "*",
  2715. "ext-mbstring": "*",
  2716. "facebook/webdriver": ">=1.1.3 <2.0",
  2717. "guzzlehttp/guzzle": ">=4.1.4 <7.0",
  2718. "guzzlehttp/psr7": "~1.0",
  2719. "php": ">=5.6.0 <8.0",
  2720. "symfony/browser-kit": ">=2.7 <5.0",
  2721. "symfony/console": ">=2.7 <5.0",
  2722. "symfony/css-selector": ">=2.7 <5.0",
  2723. "symfony/dom-crawler": ">=2.7 <5.0",
  2724. "symfony/event-dispatcher": ">=2.7 <5.0",
  2725. "symfony/finder": ">=2.7 <5.0",
  2726. "symfony/yaml": ">=2.7 <5.0"
  2727. },
  2728. "require-dev": {
  2729. "codeception/specify": "~0.3",
  2730. "facebook/graph-sdk": "~5.3",
  2731. "flow/jsonpath": "~0.2",
  2732. "monolog/monolog": "~1.8",
  2733. "pda/pheanstalk": "~3.0",
  2734. "php-amqplib/php-amqplib": "~2.4",
  2735. "predis/predis": "^1.0",
  2736. "squizlabs/php_codesniffer": "~2.0",
  2737. "symfony/process": ">=2.7 <5.0",
  2738. "vlucas/phpdotenv": "^3.0"
  2739. },
  2740. "suggest": {
  2741. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  2742. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  2743. "codeception/specify": "BDD-style code blocks",
  2744. "codeception/verify": "BDD-style assertions",
  2745. "flow/jsonpath": "For using JSONPath in REST module",
  2746. "league/factory-muffin": "For DataFactory module",
  2747. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  2748. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  2749. "stecman/symfony-console-completion": "For BASH autocompletion",
  2750. "symfony/phpunit-bridge": "For phpunit-bridge support"
  2751. },
  2752. "bin": [
  2753. "codecept"
  2754. ],
  2755. "type": "library",
  2756. "extra": {
  2757. "branch-alias": []
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Codeception\\": "src/Codeception",
  2762. "Codeception\\Extension\\": "ext"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "MIT"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "Michael Bodnarchuk",
  2772. "email": "davert@mail.ua",
  2773. "homepage": "http://codegyre.com"
  2774. }
  2775. ],
  2776. "description": "BDD-style testing framework",
  2777. "homepage": "http://codeception.com/",
  2778. "keywords": [
  2779. "BDD",
  2780. "TDD",
  2781. "acceptance testing",
  2782. "functional testing",
  2783. "unit testing"
  2784. ],
  2785. "time": "2019-04-24T11:28:19+00:00"
  2786. },
  2787. {
  2788. "name": "codeception/phpunit-wrapper",
  2789. "version": "7.8.1",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  2793. "reference": "bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5",
  2798. "reference": "bc6f37d770ec00c4c7c78a1cac2b8ac0f9c9eec5",
  2799. "shasum": ""
  2800. },
  2801. "require": {
  2802. "phpunit/php-code-coverage": "^6.0",
  2803. "phpunit/phpunit": "7.5.*",
  2804. "sebastian/comparator": "^3.0",
  2805. "sebastian/diff": "^3.0"
  2806. },
  2807. "require-dev": {
  2808. "codeception/specify": "*",
  2809. "vlucas/phpdotenv": "^3.0"
  2810. },
  2811. "type": "library",
  2812. "autoload": {
  2813. "psr-4": {
  2814. "Codeception\\PHPUnit\\": "src/"
  2815. }
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "MIT"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Davert",
  2824. "email": "davert.php@resend.cc"
  2825. }
  2826. ],
  2827. "description": "PHPUnit classes used by Codeception",
  2828. "time": "2020-10-11T18:23:48+00:00"
  2829. },
  2830. {
  2831. "name": "codeception/stub",
  2832. "version": "2.1.0",
  2833. "source": {
  2834. "type": "git",
  2835. "url": "https://github.com/Codeception/Stub.git",
  2836. "reference": "853657f988942f7afb69becf3fd0059f192c705a"
  2837. },
  2838. "dist": {
  2839. "type": "zip",
  2840. "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a",
  2841. "reference": "853657f988942f7afb69becf3fd0059f192c705a",
  2842. "shasum": ""
  2843. },
  2844. "require": {
  2845. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3"
  2846. },
  2847. "type": "library",
  2848. "autoload": {
  2849. "psr-4": {
  2850. "Codeception\\": "src/"
  2851. }
  2852. },
  2853. "notification-url": "https://packagist.org/downloads/",
  2854. "license": [
  2855. "MIT"
  2856. ],
  2857. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  2858. "time": "2019-03-02T15:35:10+00:00"
  2859. },
  2860. {
  2861. "name": "composer/package-versions-deprecated",
  2862. "version": "1.11.99",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/composer/package-versions-deprecated.git",
  2866. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  2871. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  2872. "shasum": ""
  2873. },
  2874. "require": {
  2875. "composer-plugin-api": "^1.1.0 || ^2.0",
  2876. "php": "^7 || ^8"
  2877. },
  2878. "replace": {
  2879. "ocramius/package-versions": "1.11.99"
  2880. },
  2881. "require-dev": {
  2882. "composer/composer": "^1.9.3 || ^2.0@dev",
  2883. "ext-zip": "^1.13",
  2884. "phpunit/phpunit": "^6.5 || ^7"
  2885. },
  2886. "type": "composer-plugin",
  2887. "extra": {
  2888. "class": "PackageVersions\\Installer",
  2889. "branch-alias": {
  2890. "dev-master": "1.x-dev"
  2891. }
  2892. },
  2893. "autoload": {
  2894. "psr-4": {
  2895. "PackageVersions\\": "src/PackageVersions"
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Marco Pivetta",
  2905. "email": "ocramius@gmail.com"
  2906. },
  2907. {
  2908. "name": "Jordi Boggiano",
  2909. "email": "j.boggiano@seld.be"
  2910. }
  2911. ],
  2912. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  2913. "time": "2020-08-25T05:50:16+00:00"
  2914. },
  2915. {
  2916. "name": "composer/xdebug-handler",
  2917. "version": "1.4.4",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/composer/xdebug-handler.git",
  2921. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6e076a124f7ee146f2487554a94b6a19a74887ba",
  2926. "reference": "6e076a124f7ee146f2487554a94b6a19a74887ba",
  2927. "shasum": ""
  2928. },
  2929. "require": {
  2930. "php": "^5.3.2 || ^7.0 || ^8.0",
  2931. "psr/log": "^1.0"
  2932. },
  2933. "require-dev": {
  2934. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  2935. },
  2936. "type": "library",
  2937. "autoload": {
  2938. "psr-4": {
  2939. "Composer\\XdebugHandler\\": "src"
  2940. }
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "MIT"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "John Stevenson",
  2949. "email": "john-stevenson@blueyonder.co.uk"
  2950. }
  2951. ],
  2952. "description": "Restarts a process without Xdebug.",
  2953. "keywords": [
  2954. "Xdebug",
  2955. "performance"
  2956. ],
  2957. "funding": [
  2958. {
  2959. "url": "https://packagist.com",
  2960. "type": "custom"
  2961. },
  2962. {
  2963. "url": "https://github.com/composer",
  2964. "type": "github"
  2965. },
  2966. {
  2967. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  2968. "type": "tidelift"
  2969. }
  2970. ],
  2971. "time": "2020-10-24T12:39:10+00:00"
  2972. },
  2973. {
  2974. "name": "doctrine/instantiator",
  2975. "version": "1.3.1",
  2976. "source": {
  2977. "type": "git",
  2978. "url": "https://github.com/doctrine/instantiator.git",
  2979. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  2980. },
  2981. "dist": {
  2982. "type": "zip",
  2983. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  2984. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  2985. "shasum": ""
  2986. },
  2987. "require": {
  2988. "php": "^7.1 || ^8.0"
  2989. },
  2990. "require-dev": {
  2991. "doctrine/coding-standard": "^6.0",
  2992. "ext-pdo": "*",
  2993. "ext-phar": "*",
  2994. "phpbench/phpbench": "^0.13",
  2995. "phpstan/phpstan-phpunit": "^0.11",
  2996. "phpstan/phpstan-shim": "^0.11",
  2997. "phpunit/phpunit": "^7.0"
  2998. },
  2999. "type": "library",
  3000. "extra": {
  3001. "branch-alias": {
  3002. "dev-master": "1.2.x-dev"
  3003. }
  3004. },
  3005. "autoload": {
  3006. "psr-4": {
  3007. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3008. }
  3009. },
  3010. "notification-url": "https://packagist.org/downloads/",
  3011. "license": [
  3012. "MIT"
  3013. ],
  3014. "authors": [
  3015. {
  3016. "name": "Marco Pivetta",
  3017. "email": "ocramius@gmail.com",
  3018. "homepage": "http://ocramius.github.com/"
  3019. }
  3020. ],
  3021. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3022. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3023. "keywords": [
  3024. "constructor",
  3025. "instantiate"
  3026. ],
  3027. "time": "2020-05-29T17:27:14+00:00"
  3028. },
  3029. {
  3030. "name": "facebook/webdriver",
  3031. "version": "1.7.1",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/php-webdriver/php-webdriver-archive.git",
  3035. "reference": "e43de70f3c7166169d0f14a374505392734160e5"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/php-webdriver/php-webdriver-archive/zipball/e43de70f3c7166169d0f14a374505392734160e5",
  3040. "reference": "e43de70f3c7166169d0f14a374505392734160e5",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "ext-curl": "*",
  3045. "ext-json": "*",
  3046. "ext-mbstring": "*",
  3047. "ext-zip": "*",
  3048. "php": "^5.6 || ~7.0",
  3049. "symfony/process": "^2.8 || ^3.1 || ^4.0"
  3050. },
  3051. "require-dev": {
  3052. "friendsofphp/php-cs-fixer": "^2.0",
  3053. "jakub-onderka/php-parallel-lint": "^0.9.2",
  3054. "php-coveralls/php-coveralls": "^2.0",
  3055. "php-mock/php-mock-phpunit": "^1.1",
  3056. "phpunit/phpunit": "^5.7",
  3057. "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
  3058. "squizlabs/php_codesniffer": "^2.6",
  3059. "symfony/var-dumper": "^3.3 || ^4.0"
  3060. },
  3061. "suggest": {
  3062. "ext-SimpleXML": "For Firefox profile creation"
  3063. },
  3064. "type": "library",
  3065. "extra": {
  3066. "branch-alias": {
  3067. "dev-community": "1.5-dev"
  3068. }
  3069. },
  3070. "autoload": {
  3071. "psr-4": {
  3072. "Facebook\\WebDriver\\": "lib/"
  3073. }
  3074. },
  3075. "notification-url": "https://packagist.org/downloads/",
  3076. "license": [
  3077. "Apache-2.0"
  3078. ],
  3079. "description": "A PHP client for Selenium WebDriver",
  3080. "homepage": "https://github.com/facebook/php-webdriver",
  3081. "keywords": [
  3082. "facebook",
  3083. "php",
  3084. "selenium",
  3085. "webdriver"
  3086. ],
  3087. "abandoned": "php-webdriver/webdriver",
  3088. "time": "2019-06-13T08:02:18+00:00"
  3089. },
  3090. {
  3091. "name": "fzaninotto/faker",
  3092. "version": "v1.9.1",
  3093. "source": {
  3094. "type": "git",
  3095. "url": "https://github.com/fzaninotto/Faker.git",
  3096. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  3097. },
  3098. "dist": {
  3099. "type": "zip",
  3100. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  3101. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  3102. "shasum": ""
  3103. },
  3104. "require": {
  3105. "php": "^5.3.3 || ^7.0"
  3106. },
  3107. "require-dev": {
  3108. "ext-intl": "*",
  3109. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3110. "squizlabs/php_codesniffer": "^2.9.2"
  3111. },
  3112. "type": "library",
  3113. "extra": {
  3114. "branch-alias": {
  3115. "dev-master": "1.9-dev"
  3116. }
  3117. },
  3118. "autoload": {
  3119. "psr-4": {
  3120. "Faker\\": "src/Faker/"
  3121. }
  3122. },
  3123. "notification-url": "https://packagist.org/downloads/",
  3124. "license": [
  3125. "MIT"
  3126. ],
  3127. "authors": [
  3128. {
  3129. "name": "François Zaninotto"
  3130. }
  3131. ],
  3132. "description": "Faker is a PHP library that generates fake data for you.",
  3133. "keywords": [
  3134. "data",
  3135. "faker",
  3136. "fixtures"
  3137. ],
  3138. "time": "2019-12-12T13:22:17+00:00"
  3139. },
  3140. {
  3141. "name": "guzzlehttp/guzzle",
  3142. "version": "6.5.5",
  3143. "source": {
  3144. "type": "git",
  3145. "url": "https://github.com/guzzle/guzzle.git",
  3146. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  3147. },
  3148. "dist": {
  3149. "type": "zip",
  3150. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  3151. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  3152. "shasum": ""
  3153. },
  3154. "require": {
  3155. "ext-json": "*",
  3156. "guzzlehttp/promises": "^1.0",
  3157. "guzzlehttp/psr7": "^1.6.1",
  3158. "php": ">=5.5",
  3159. "symfony/polyfill-intl-idn": "^1.17.0"
  3160. },
  3161. "require-dev": {
  3162. "ext-curl": "*",
  3163. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  3164. "psr/log": "^1.1"
  3165. },
  3166. "suggest": {
  3167. "psr/log": "Required for using the Log middleware"
  3168. },
  3169. "type": "library",
  3170. "extra": {
  3171. "branch-alias": {
  3172. "dev-master": "6.5-dev"
  3173. }
  3174. },
  3175. "autoload": {
  3176. "psr-4": {
  3177. "GuzzleHttp\\": "src/"
  3178. },
  3179. "files": [
  3180. "src/functions_include.php"
  3181. ]
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "MIT"
  3186. ],
  3187. "authors": [
  3188. {
  3189. "name": "Michael Dowling",
  3190. "email": "mtdowling@gmail.com",
  3191. "homepage": "https://github.com/mtdowling"
  3192. }
  3193. ],
  3194. "description": "Guzzle is a PHP HTTP client library",
  3195. "homepage": "http://guzzlephp.org/",
  3196. "keywords": [
  3197. "client",
  3198. "curl",
  3199. "framework",
  3200. "http",
  3201. "http client",
  3202. "rest",
  3203. "web service"
  3204. ],
  3205. "time": "2020-06-16T21:01:06+00:00"
  3206. },
  3207. {
  3208. "name": "guzzlehttp/promises",
  3209. "version": "1.4.0",
  3210. "source": {
  3211. "type": "git",
  3212. "url": "https://github.com/guzzle/promises.git",
  3213. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  3214. },
  3215. "dist": {
  3216. "type": "zip",
  3217. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  3218. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  3219. "shasum": ""
  3220. },
  3221. "require": {
  3222. "php": ">=5.5"
  3223. },
  3224. "require-dev": {
  3225. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  3226. },
  3227. "type": "library",
  3228. "extra": {
  3229. "branch-alias": {
  3230. "dev-master": "1.4-dev"
  3231. }
  3232. },
  3233. "autoload": {
  3234. "psr-4": {
  3235. "GuzzleHttp\\Promise\\": "src/"
  3236. },
  3237. "files": [
  3238. "src/functions_include.php"
  3239. ]
  3240. },
  3241. "notification-url": "https://packagist.org/downloads/",
  3242. "license": [
  3243. "MIT"
  3244. ],
  3245. "authors": [
  3246. {
  3247. "name": "Michael Dowling",
  3248. "email": "mtdowling@gmail.com",
  3249. "homepage": "https://github.com/mtdowling"
  3250. }
  3251. ],
  3252. "description": "Guzzle promises library",
  3253. "keywords": [
  3254. "promise"
  3255. ],
  3256. "time": "2020-09-30T07:37:28+00:00"
  3257. },
  3258. {
  3259. "name": "jean85/pretty-package-versions",
  3260. "version": "1.5.1",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/Jean85/pretty-package-versions.git",
  3264. "reference": "a917488320c20057da87f67d0d40543dd9427f7a"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/a917488320c20057da87f67d0d40543dd9427f7a",
  3269. "reference": "a917488320c20057da87f67d0d40543dd9427f7a",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "composer/package-versions-deprecated": "^1.8.0",
  3274. "php": "^7.0|^8.0"
  3275. },
  3276. "require-dev": {
  3277. "phpunit/phpunit": "^6.0|^8.5|^9.2"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "1.x-dev"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Jean85\\": "src/"
  3288. }
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Alessandro Lai",
  3297. "email": "alessandro.lai85@gmail.com"
  3298. }
  3299. ],
  3300. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  3301. "keywords": [
  3302. "composer",
  3303. "package",
  3304. "release",
  3305. "versions"
  3306. ],
  3307. "time": "2020-09-14T08:43:34+00:00"
  3308. },
  3309. {
  3310. "name": "myclabs/deep-copy",
  3311. "version": "1.10.1",
  3312. "source": {
  3313. "type": "git",
  3314. "url": "https://github.com/myclabs/DeepCopy.git",
  3315. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  3316. },
  3317. "dist": {
  3318. "type": "zip",
  3319. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  3320. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  3321. "shasum": ""
  3322. },
  3323. "require": {
  3324. "php": "^7.1 || ^8.0"
  3325. },
  3326. "replace": {
  3327. "myclabs/deep-copy": "self.version"
  3328. },
  3329. "require-dev": {
  3330. "doctrine/collections": "^1.0",
  3331. "doctrine/common": "^2.6",
  3332. "phpunit/phpunit": "^7.1"
  3333. },
  3334. "type": "library",
  3335. "autoload": {
  3336. "psr-4": {
  3337. "DeepCopy\\": "src/DeepCopy/"
  3338. },
  3339. "files": [
  3340. "src/DeepCopy/deep_copy.php"
  3341. ]
  3342. },
  3343. "notification-url": "https://packagist.org/downloads/",
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "description": "Create deep copies (clones) of your objects",
  3348. "keywords": [
  3349. "clone",
  3350. "copy",
  3351. "duplicate",
  3352. "object",
  3353. "object graph"
  3354. ],
  3355. "time": "2020-06-29T13:22:24+00:00"
  3356. },
  3357. {
  3358. "name": "nette/bootstrap",
  3359. "version": "v3.0.2",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/nette/bootstrap.git",
  3363. "reference": "67830a65b42abfb906f8e371512d336ebfb5da93"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/nette/bootstrap/zipball/67830a65b42abfb906f8e371512d336ebfb5da93",
  3368. "reference": "67830a65b42abfb906f8e371512d336ebfb5da93",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "nette/di": "^3.0",
  3373. "nette/utils": "^3.0",
  3374. "php": ">=7.1"
  3375. },
  3376. "conflict": {
  3377. "tracy/tracy": "<2.6"
  3378. },
  3379. "require-dev": {
  3380. "latte/latte": "^2.2",
  3381. "nette/application": "^3.0",
  3382. "nette/caching": "^3.0",
  3383. "nette/database": "^3.0",
  3384. "nette/forms": "^3.0",
  3385. "nette/http": "^3.0",
  3386. "nette/mail": "^3.0",
  3387. "nette/robot-loader": "^3.0",
  3388. "nette/safe-stream": "^2.2",
  3389. "nette/security": "^3.0",
  3390. "nette/tester": "^2.0",
  3391. "phpstan/phpstan-nette": "^0.12",
  3392. "tracy/tracy": "^2.6"
  3393. },
  3394. "suggest": {
  3395. "nette/robot-loader": "to use Configurator::createRobotLoader()",
  3396. "tracy/tracy": "to use Configurator::enableTracy()"
  3397. },
  3398. "type": "library",
  3399. "extra": {
  3400. "branch-alias": {
  3401. "dev-master": "3.0-dev"
  3402. }
  3403. },
  3404. "autoload": {
  3405. "classmap": [
  3406. "src/"
  3407. ]
  3408. },
  3409. "notification-url": "https://packagist.org/downloads/",
  3410. "license": [
  3411. "BSD-3-Clause",
  3412. "GPL-2.0-only",
  3413. "GPL-3.0-only"
  3414. ],
  3415. "authors": [
  3416. {
  3417. "name": "David Grudl",
  3418. "homepage": "https://davidgrudl.com"
  3419. },
  3420. {
  3421. "name": "Nette Community",
  3422. "homepage": "https://nette.org/contributors"
  3423. }
  3424. ],
  3425. "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
  3426. "homepage": "https://nette.org",
  3427. "keywords": [
  3428. "bootstrapping",
  3429. "configurator",
  3430. "nette"
  3431. ],
  3432. "time": "2020-05-26T08:46:23+00:00"
  3433. },
  3434. {
  3435. "name": "nette/di",
  3436. "version": "v3.0.5",
  3437. "source": {
  3438. "type": "git",
  3439. "url": "https://github.com/nette/di.git",
  3440. "reference": "766e8185196a97ded4f9128db6d79a3a124b7eb6"
  3441. },
  3442. "dist": {
  3443. "type": "zip",
  3444. "url": "https://api.github.com/repos/nette/di/zipball/766e8185196a97ded4f9128db6d79a3a124b7eb6",
  3445. "reference": "766e8185196a97ded4f9128db6d79a3a124b7eb6",
  3446. "shasum": ""
  3447. },
  3448. "require": {
  3449. "ext-tokenizer": "*",
  3450. "nette/neon": "^3.0",
  3451. "nette/php-generator": "^3.3.3",
  3452. "nette/robot-loader": "^3.2",
  3453. "nette/schema": "^1.0",
  3454. "nette/utils": "^3.1",
  3455. "php": ">=7.1"
  3456. },
  3457. "conflict": {
  3458. "nette/bootstrap": "<3.0"
  3459. },
  3460. "require-dev": {
  3461. "nette/tester": "^2.2",
  3462. "phpstan/phpstan": "^0.12",
  3463. "tracy/tracy": "^2.3"
  3464. },
  3465. "type": "library",
  3466. "extra": {
  3467. "branch-alias": {
  3468. "dev-master": "3.0-dev"
  3469. }
  3470. },
  3471. "autoload": {
  3472. "classmap": [
  3473. "src/"
  3474. ]
  3475. },
  3476. "notification-url": "https://packagist.org/downloads/",
  3477. "license": [
  3478. "BSD-3-Clause",
  3479. "GPL-2.0-only",
  3480. "GPL-3.0-only"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "David Grudl",
  3485. "homepage": "https://davidgrudl.com"
  3486. },
  3487. {
  3488. "name": "Nette Community",
  3489. "homepage": "https://nette.org/contributors"
  3490. }
  3491. ],
  3492. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  3493. "homepage": "https://nette.org",
  3494. "keywords": [
  3495. "compiled",
  3496. "di",
  3497. "dic",
  3498. "factory",
  3499. "ioc",
  3500. "nette",
  3501. "static"
  3502. ],
  3503. "time": "2020-08-13T13:04:23+00:00"
  3504. },
  3505. {
  3506. "name": "nette/finder",
  3507. "version": "v2.5.2",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/nette/finder.git",
  3511. "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
  3516. "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
  3517. "shasum": ""
  3518. },
  3519. "require": {
  3520. "nette/utils": "^2.4 || ^3.0",
  3521. "php": ">=7.1"
  3522. },
  3523. "conflict": {
  3524. "nette/nette": "<2.2"
  3525. },
  3526. "require-dev": {
  3527. "nette/tester": "^2.0",
  3528. "phpstan/phpstan": "^0.12",
  3529. "tracy/tracy": "^2.3"
  3530. },
  3531. "type": "library",
  3532. "extra": {
  3533. "branch-alias": {
  3534. "dev-master": "2.5-dev"
  3535. }
  3536. },
  3537. "autoload": {
  3538. "classmap": [
  3539. "src/"
  3540. ]
  3541. },
  3542. "notification-url": "https://packagist.org/downloads/",
  3543. "license": [
  3544. "BSD-3-Clause",
  3545. "GPL-2.0",
  3546. "GPL-3.0"
  3547. ],
  3548. "authors": [
  3549. {
  3550. "name": "David Grudl",
  3551. "homepage": "https://davidgrudl.com"
  3552. },
  3553. {
  3554. "name": "Nette Community",
  3555. "homepage": "https://nette.org/contributors"
  3556. }
  3557. ],
  3558. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  3559. "homepage": "https://nette.org",
  3560. "keywords": [
  3561. "filesystem",
  3562. "glob",
  3563. "iterator",
  3564. "nette"
  3565. ],
  3566. "time": "2020-01-03T20:35:40+00:00"
  3567. },
  3568. {
  3569. "name": "nette/neon",
  3570. "version": "v3.2.1",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/nette/neon.git",
  3574. "reference": "a5b3a60833d2ef55283a82d0c30b45d136b29e75"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/nette/neon/zipball/a5b3a60833d2ef55283a82d0c30b45d136b29e75",
  3579. "reference": "a5b3a60833d2ef55283a82d0c30b45d136b29e75",
  3580. "shasum": ""
  3581. },
  3582. "require": {
  3583. "ext-iconv": "*",
  3584. "ext-json": "*",
  3585. "php": ">=7.1"
  3586. },
  3587. "require-dev": {
  3588. "nette/tester": "^2.0",
  3589. "phpstan/phpstan": "^0.12",
  3590. "tracy/tracy": "^2.3"
  3591. },
  3592. "type": "library",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-master": "3.2-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "classmap": [
  3600. "src/"
  3601. ]
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "BSD-3-Clause",
  3606. "GPL-2.0-only",
  3607. "GPL-3.0-only"
  3608. ],
  3609. "authors": [
  3610. {
  3611. "name": "David Grudl",
  3612. "homepage": "https://davidgrudl.com"
  3613. },
  3614. {
  3615. "name": "Nette Community",
  3616. "homepage": "https://nette.org/contributors"
  3617. }
  3618. ],
  3619. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  3620. "homepage": "https://ne-on.org",
  3621. "keywords": [
  3622. "export",
  3623. "import",
  3624. "neon",
  3625. "nette",
  3626. "yaml"
  3627. ],
  3628. "time": "2020-07-31T12:28:05+00:00"
  3629. },
  3630. {
  3631. "name": "nette/php-generator",
  3632. "version": "v3.4.1",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/nette/php-generator.git",
  3636. "reference": "7051954c534cebafd650efe8b145ac75b223cb66"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/nette/php-generator/zipball/7051954c534cebafd650efe8b145ac75b223cb66",
  3641. "reference": "7051954c534cebafd650efe8b145ac75b223cb66",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "nette/utils": "^2.4.2 || ^3.0",
  3646. "php": ">=7.1"
  3647. },
  3648. "require-dev": {
  3649. "nette/tester": "^2.0",
  3650. "nikic/php-parser": "^4.4",
  3651. "phpstan/phpstan": "^0.12",
  3652. "tracy/tracy": "^2.3"
  3653. },
  3654. "suggest": {
  3655. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  3656. },
  3657. "type": "library",
  3658. "extra": {
  3659. "branch-alias": {
  3660. "dev-master": "3.4-dev"
  3661. }
  3662. },
  3663. "autoload": {
  3664. "classmap": [
  3665. "src/"
  3666. ]
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "BSD-3-Clause",
  3671. "GPL-2.0-only",
  3672. "GPL-3.0-only"
  3673. ],
  3674. "authors": [
  3675. {
  3676. "name": "David Grudl",
  3677. "homepage": "https://davidgrudl.com"
  3678. },
  3679. {
  3680. "name": "Nette Community",
  3681. "homepage": "https://nette.org/contributors"
  3682. }
  3683. ],
  3684. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  3685. "homepage": "https://nette.org",
  3686. "keywords": [
  3687. "code",
  3688. "nette",
  3689. "php",
  3690. "scaffolding"
  3691. ],
  3692. "time": "2020-06-19T14:31:47+00:00"
  3693. },
  3694. {
  3695. "name": "nette/robot-loader",
  3696. "version": "v3.3.1",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/nette/robot-loader.git",
  3700. "reference": "15c1ecd0e6e69e8d908dfc4cca7b14f3b850a96b"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://api.github.com/repos/nette/robot-loader/zipball/15c1ecd0e6e69e8d908dfc4cca7b14f3b850a96b",
  3705. "reference": "15c1ecd0e6e69e8d908dfc4cca7b14f3b850a96b",
  3706. "shasum": ""
  3707. },
  3708. "require": {
  3709. "ext-tokenizer": "*",
  3710. "nette/finder": "^2.5 || ^3.0",
  3711. "nette/utils": "^3.0",
  3712. "php": ">=7.1"
  3713. },
  3714. "require-dev": {
  3715. "nette/tester": "^2.0",
  3716. "phpstan/phpstan": "^0.12",
  3717. "tracy/tracy": "^2.3"
  3718. },
  3719. "type": "library",
  3720. "extra": {
  3721. "branch-alias": {
  3722. "dev-master": "3.3-dev"
  3723. }
  3724. },
  3725. "autoload": {
  3726. "classmap": [
  3727. "src/"
  3728. ]
  3729. },
  3730. "notification-url": "https://packagist.org/downloads/",
  3731. "license": [
  3732. "BSD-3-Clause",
  3733. "GPL-2.0-only",
  3734. "GPL-3.0-only"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "David Grudl",
  3739. "homepage": "https://davidgrudl.com"
  3740. },
  3741. {
  3742. "name": "Nette Community",
  3743. "homepage": "https://nette.org/contributors"
  3744. }
  3745. ],
  3746. "description": "🍀 Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  3747. "homepage": "https://nette.org",
  3748. "keywords": [
  3749. "autoload",
  3750. "class",
  3751. "interface",
  3752. "nette",
  3753. "trait"
  3754. ],
  3755. "time": "2020-09-15T15:14:17+00:00"
  3756. },
  3757. {
  3758. "name": "nette/schema",
  3759. "version": "v1.0.2",
  3760. "source": {
  3761. "type": "git",
  3762. "url": "https://github.com/nette/schema.git",
  3763. "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4"
  3764. },
  3765. "dist": {
  3766. "type": "zip",
  3767. "url": "https://api.github.com/repos/nette/schema/zipball/febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
  3768. "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
  3769. "shasum": ""
  3770. },
  3771. "require": {
  3772. "nette/utils": "^3.1",
  3773. "php": ">=7.1"
  3774. },
  3775. "require-dev": {
  3776. "nette/tester": "^2.2",
  3777. "phpstan/phpstan-nette": "^0.12",
  3778. "tracy/tracy": "^2.3"
  3779. },
  3780. "type": "library",
  3781. "extra": {
  3782. "branch-alias": []
  3783. },
  3784. "autoload": {
  3785. "classmap": [
  3786. "src/"
  3787. ]
  3788. },
  3789. "notification-url": "https://packagist.org/downloads/",
  3790. "license": [
  3791. "BSD-3-Clause",
  3792. "GPL-2.0",
  3793. "GPL-3.0"
  3794. ],
  3795. "authors": [
  3796. {
  3797. "name": "David Grudl",
  3798. "homepage": "https://davidgrudl.com"
  3799. },
  3800. {
  3801. "name": "Nette Community",
  3802. "homepage": "https://nette.org/contributors"
  3803. }
  3804. ],
  3805. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3806. "homepage": "https://nette.org",
  3807. "keywords": [
  3808. "config",
  3809. "nette"
  3810. ],
  3811. "time": "2020-01-06T22:52:48+00:00"
  3812. },
  3813. {
  3814. "name": "nette/utils",
  3815. "version": "v3.1.3",
  3816. "source": {
  3817. "type": "git",
  3818. "url": "https://github.com/nette/utils.git",
  3819. "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f"
  3820. },
  3821. "dist": {
  3822. "type": "zip",
  3823. "url": "https://api.github.com/repos/nette/utils/zipball/c09937fbb24987b2a41c6022ebe84f4f1b8eec0f",
  3824. "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f",
  3825. "shasum": ""
  3826. },
  3827. "require": {
  3828. "php": ">=7.1"
  3829. },
  3830. "require-dev": {
  3831. "nette/tester": "~2.0",
  3832. "phpstan/phpstan": "^0.12",
  3833. "tracy/tracy": "^2.3"
  3834. },
  3835. "suggest": {
  3836. "ext-gd": "to use Image",
  3837. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3838. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3839. "ext-json": "to use Nette\\Utils\\Json",
  3840. "ext-mbstring": "to use Strings::lower() etc...",
  3841. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3842. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3843. },
  3844. "type": "library",
  3845. "extra": {
  3846. "branch-alias": {
  3847. "dev-master": "3.1-dev"
  3848. }
  3849. },
  3850. "autoload": {
  3851. "classmap": [
  3852. "src/"
  3853. ]
  3854. },
  3855. "notification-url": "https://packagist.org/downloads/",
  3856. "license": [
  3857. "BSD-3-Clause",
  3858. "GPL-2.0-only",
  3859. "GPL-3.0-only"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "David Grudl",
  3864. "homepage": "https://davidgrudl.com"
  3865. },
  3866. {
  3867. "name": "Nette Community",
  3868. "homepage": "https://nette.org/contributors"
  3869. }
  3870. ],
  3871. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3872. "homepage": "https://nette.org",
  3873. "keywords": [
  3874. "array",
  3875. "core",
  3876. "datetime",
  3877. "images",
  3878. "json",
  3879. "nette",
  3880. "paginator",
  3881. "password",
  3882. "slugify",
  3883. "string",
  3884. "unicode",
  3885. "utf-8",
  3886. "utility",
  3887. "validation"
  3888. ],
  3889. "time": "2020-08-07T10:34:21+00:00"
  3890. },
  3891. {
  3892. "name": "nikic/php-parser",
  3893. "version": "v4.10.2",
  3894. "source": {
  3895. "type": "git",
  3896. "url": "https://github.com/nikic/PHP-Parser.git",
  3897. "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
  3898. },
  3899. "dist": {
  3900. "type": "zip",
  3901. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
  3902. "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
  3903. "shasum": ""
  3904. },
  3905. "require": {
  3906. "ext-tokenizer": "*",
  3907. "php": ">=7.0"
  3908. },
  3909. "require-dev": {
  3910. "ircmaxell/php-yacc": "^0.0.7",
  3911. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3912. },
  3913. "bin": [
  3914. "bin/php-parse"
  3915. ],
  3916. "type": "library",
  3917. "extra": {
  3918. "branch-alias": {
  3919. "dev-master": "4.9-dev"
  3920. }
  3921. },
  3922. "autoload": {
  3923. "psr-4": {
  3924. "PhpParser\\": "lib/PhpParser"
  3925. }
  3926. },
  3927. "notification-url": "https://packagist.org/downloads/",
  3928. "license": [
  3929. "BSD-3-Clause"
  3930. ],
  3931. "authors": [
  3932. {
  3933. "name": "Nikita Popov"
  3934. }
  3935. ],
  3936. "description": "A PHP parser written in PHP",
  3937. "keywords": [
  3938. "parser",
  3939. "php"
  3940. ],
  3941. "time": "2020-09-26T10:30:38+00:00"
  3942. },
  3943. {
  3944. "name": "phar-io/manifest",
  3945. "version": "1.0.3",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://github.com/phar-io/manifest.git",
  3949. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  3950. },
  3951. "dist": {
  3952. "type": "zip",
  3953. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3954. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3955. "shasum": ""
  3956. },
  3957. "require": {
  3958. "ext-dom": "*",
  3959. "ext-phar": "*",
  3960. "phar-io/version": "^2.0",
  3961. "php": "^5.6 || ^7.0"
  3962. },
  3963. "type": "library",
  3964. "extra": {
  3965. "branch-alias": {
  3966. "dev-master": "1.0.x-dev"
  3967. }
  3968. },
  3969. "autoload": {
  3970. "classmap": [
  3971. "src/"
  3972. ]
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "BSD-3-Clause"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Arne Blankerts",
  3981. "email": "arne@blankerts.de",
  3982. "role": "Developer"
  3983. },
  3984. {
  3985. "name": "Sebastian Heuer",
  3986. "email": "sebastian@phpeople.de",
  3987. "role": "Developer"
  3988. },
  3989. {
  3990. "name": "Sebastian Bergmann",
  3991. "email": "sebastian@phpunit.de",
  3992. "role": "Developer"
  3993. }
  3994. ],
  3995. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3996. "time": "2018-07-08T19:23:20+00:00"
  3997. },
  3998. {
  3999. "name": "phar-io/version",
  4000. "version": "2.0.1",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://github.com/phar-io/version.git",
  4004. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4005. },
  4006. "dist": {
  4007. "type": "zip",
  4008. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4009. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4010. "shasum": ""
  4011. },
  4012. "require": {
  4013. "php": "^5.6 || ^7.0"
  4014. },
  4015. "type": "library",
  4016. "autoload": {
  4017. "classmap": [
  4018. "src/"
  4019. ]
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "BSD-3-Clause"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Arne Blankerts",
  4028. "email": "arne@blankerts.de",
  4029. "role": "Developer"
  4030. },
  4031. {
  4032. "name": "Sebastian Heuer",
  4033. "email": "sebastian@phpeople.de",
  4034. "role": "Developer"
  4035. },
  4036. {
  4037. "name": "Sebastian Bergmann",
  4038. "email": "sebastian@phpunit.de",
  4039. "role": "Developer"
  4040. }
  4041. ],
  4042. "description": "Library for handling version information and constraints",
  4043. "time": "2018-07-08T19:19:57+00:00"
  4044. },
  4045. {
  4046. "name": "phpdocumentor/reflection-common",
  4047. "version": "2.1.0",
  4048. "source": {
  4049. "type": "git",
  4050. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4051. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  4052. },
  4053. "dist": {
  4054. "type": "zip",
  4055. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  4056. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  4057. "shasum": ""
  4058. },
  4059. "require": {
  4060. "php": ">=7.1"
  4061. },
  4062. "type": "library",
  4063. "extra": {
  4064. "branch-alias": {
  4065. "dev-master": "2.x-dev"
  4066. }
  4067. },
  4068. "autoload": {
  4069. "psr-4": {
  4070. "phpDocumentor\\Reflection\\": "src/"
  4071. }
  4072. },
  4073. "notification-url": "https://packagist.org/downloads/",
  4074. "license": [
  4075. "MIT"
  4076. ],
  4077. "authors": [
  4078. {
  4079. "name": "Jaap van Otterdijk",
  4080. "email": "opensource@ijaap.nl"
  4081. }
  4082. ],
  4083. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4084. "homepage": "http://www.phpdoc.org",
  4085. "keywords": [
  4086. "FQSEN",
  4087. "phpDocumentor",
  4088. "phpdoc",
  4089. "reflection",
  4090. "static analysis"
  4091. ],
  4092. "time": "2020-04-27T09:25:28+00:00"
  4093. },
  4094. {
  4095. "name": "phpdocumentor/reflection-docblock",
  4096. "version": "4.3.4",
  4097. "source": {
  4098. "type": "git",
  4099. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4100. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  4101. },
  4102. "dist": {
  4103. "type": "zip",
  4104. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4105. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4106. "shasum": ""
  4107. },
  4108. "require": {
  4109. "php": "^7.0",
  4110. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  4111. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  4112. "webmozart/assert": "^1.0"
  4113. },
  4114. "require-dev": {
  4115. "doctrine/instantiator": "^1.0.5",
  4116. "mockery/mockery": "^1.0",
  4117. "phpdocumentor/type-resolver": "0.4.*",
  4118. "phpunit/phpunit": "^6.4"
  4119. },
  4120. "type": "library",
  4121. "extra": {
  4122. "branch-alias": {
  4123. "dev-master": "4.x-dev"
  4124. }
  4125. },
  4126. "autoload": {
  4127. "psr-4": {
  4128. "phpDocumentor\\Reflection\\": [
  4129. "src/"
  4130. ]
  4131. }
  4132. },
  4133. "notification-url": "https://packagist.org/downloads/",
  4134. "license": [
  4135. "MIT"
  4136. ],
  4137. "authors": [
  4138. {
  4139. "name": "Mike van Riel",
  4140. "email": "me@mikevanriel.com"
  4141. }
  4142. ],
  4143. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4144. "time": "2019-12-28T18:55:12+00:00"
  4145. },
  4146. {
  4147. "name": "phpdocumentor/type-resolver",
  4148. "version": "1.0.1",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4152. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  4157. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  4158. "shasum": ""
  4159. },
  4160. "require": {
  4161. "php": "^7.1",
  4162. "phpdocumentor/reflection-common": "^2.0"
  4163. },
  4164. "require-dev": {
  4165. "ext-tokenizer": "^7.1",
  4166. "mockery/mockery": "~1",
  4167. "phpunit/phpunit": "^7.0"
  4168. },
  4169. "type": "library",
  4170. "extra": {
  4171. "branch-alias": {
  4172. "dev-master": "1.x-dev"
  4173. }
  4174. },
  4175. "autoload": {
  4176. "psr-4": {
  4177. "phpDocumentor\\Reflection\\": "src"
  4178. }
  4179. },
  4180. "notification-url": "https://packagist.org/downloads/",
  4181. "license": [
  4182. "MIT"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "Mike van Riel",
  4187. "email": "me@mikevanriel.com"
  4188. }
  4189. ],
  4190. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4191. "time": "2019-08-22T18:11:29+00:00"
  4192. },
  4193. {
  4194. "name": "phpspec/prophecy",
  4195. "version": "v1.10.3",
  4196. "source": {
  4197. "type": "git",
  4198. "url": "https://github.com/phpspec/prophecy.git",
  4199. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  4200. },
  4201. "dist": {
  4202. "type": "zip",
  4203. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  4204. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  4205. "shasum": ""
  4206. },
  4207. "require": {
  4208. "doctrine/instantiator": "^1.0.2",
  4209. "php": "^5.3|^7.0",
  4210. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  4211. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  4212. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  4213. },
  4214. "require-dev": {
  4215. "phpspec/phpspec": "^2.5 || ^3.2",
  4216. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  4217. },
  4218. "type": "library",
  4219. "extra": {
  4220. "branch-alias": {
  4221. "dev-master": "1.10.x-dev"
  4222. }
  4223. },
  4224. "autoload": {
  4225. "psr-4": {
  4226. "Prophecy\\": "src/Prophecy"
  4227. }
  4228. },
  4229. "notification-url": "https://packagist.org/downloads/",
  4230. "license": [
  4231. "MIT"
  4232. ],
  4233. "authors": [
  4234. {
  4235. "name": "Konstantin Kudryashov",
  4236. "email": "ever.zet@gmail.com",
  4237. "homepage": "http://everzet.com"
  4238. },
  4239. {
  4240. "name": "Marcello Duarte",
  4241. "email": "marcello.duarte@gmail.com"
  4242. }
  4243. ],
  4244. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4245. "homepage": "https://github.com/phpspec/prophecy",
  4246. "keywords": [
  4247. "Double",
  4248. "Dummy",
  4249. "fake",
  4250. "mock",
  4251. "spy",
  4252. "stub"
  4253. ],
  4254. "time": "2020-03-05T15:02:03+00:00"
  4255. },
  4256. {
  4257. "name": "phpstan/phpdoc-parser",
  4258. "version": "0.3.5",
  4259. "source": {
  4260. "type": "git",
  4261. "url": "https://github.com/phpstan/phpdoc-parser.git",
  4262. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4"
  4263. },
  4264. "dist": {
  4265. "type": "zip",
  4266. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  4267. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  4268. "shasum": ""
  4269. },
  4270. "require": {
  4271. "php": "~7.1"
  4272. },
  4273. "require-dev": {
  4274. "consistence/coding-standard": "^3.5",
  4275. "jakub-onderka/php-parallel-lint": "^0.9.2",
  4276. "phing/phing": "^2.16.0",
  4277. "phpstan/phpstan": "^0.10",
  4278. "phpunit/phpunit": "^6.3",
  4279. "slevomat/coding-standard": "^4.7.2",
  4280. "squizlabs/php_codesniffer": "^3.3.2",
  4281. "symfony/process": "^3.4 || ^4.0"
  4282. },
  4283. "type": "library",
  4284. "extra": {
  4285. "branch-alias": {
  4286. "dev-master": "0.3-dev"
  4287. }
  4288. },
  4289. "autoload": {
  4290. "psr-4": {
  4291. "PHPStan\\PhpDocParser\\": [
  4292. "src/"
  4293. ]
  4294. }
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  4301. "time": "2019-06-07T19:13:52+00:00"
  4302. },
  4303. {
  4304. "name": "phpstan/phpstan",
  4305. "version": "0.11.20",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/phpstan/phpstan.git",
  4309. "reference": "938dcc03a005280e1a9587ec7684345bff06ebfc"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/938dcc03a005280e1a9587ec7684345bff06ebfc",
  4314. "reference": "938dcc03a005280e1a9587ec7684345bff06ebfc",
  4315. "shasum": ""
  4316. },
  4317. "require": {
  4318. "composer/xdebug-handler": "^1.3.0",
  4319. "jean85/pretty-package-versions": "^1.0.3",
  4320. "nette/bootstrap": "^2.4 || ^3.0",
  4321. "nette/di": "^2.4.7 || ^3.0",
  4322. "nette/neon": "^2.4.3 || ^3.0",
  4323. "nette/robot-loader": "^3.0.1",
  4324. "nette/schema": "^1.0",
  4325. "nette/utils": "^2.4.5 || ^3.0",
  4326. "nikic/php-parser": "^4.2.3",
  4327. "php": "~7.1",
  4328. "phpstan/phpdoc-parser": "^0.3.5",
  4329. "symfony/console": "~3.2 || ~4.0",
  4330. "symfony/finder": "~3.2 || ~4.0"
  4331. },
  4332. "conflict": {
  4333. "symfony/console": "3.4.16 || 4.1.5"
  4334. },
  4335. "require-dev": {
  4336. "brianium/paratest": "^2.0 || ^3.0",
  4337. "consistence/coding-standard": "^3.5",
  4338. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  4339. "ext-intl": "*",
  4340. "ext-mysqli": "*",
  4341. "ext-simplexml": "*",
  4342. "ext-soap": "*",
  4343. "ext-zip": "*",
  4344. "jakub-onderka/php-parallel-lint": "^1.0",
  4345. "localheinz/composer-normalize": "^1.1.0",
  4346. "phing/phing": "^2.16.0",
  4347. "phpstan/phpstan-deprecation-rules": "^0.11",
  4348. "phpstan/phpstan-php-parser": "^0.11",
  4349. "phpstan/phpstan-phpunit": "^0.11",
  4350. "phpstan/phpstan-strict-rules": "^0.11",
  4351. "phpunit/phpunit": "^7.5.14 || ^8.0",
  4352. "slevomat/coding-standard": "^4.7.2",
  4353. "squizlabs/php_codesniffer": "^3.3.2"
  4354. },
  4355. "bin": [
  4356. "bin/phpstan"
  4357. ],
  4358. "type": "library",
  4359. "extra": {
  4360. "branch-alias": {
  4361. "dev-master": "0.11-dev"
  4362. }
  4363. },
  4364. "autoload": {
  4365. "psr-4": {
  4366. "PHPStan\\": [
  4367. "src/"
  4368. ]
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "description": "PHPStan - PHP Static Analysis Tool",
  4376. "funding": [
  4377. {
  4378. "url": "https://github.com/ondrejmirtes",
  4379. "type": "github"
  4380. },
  4381. {
  4382. "url": "https://www.patreon.com/phpstan",
  4383. "type": "patreon"
  4384. },
  4385. {
  4386. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  4387. "type": "tidelift"
  4388. }
  4389. ],
  4390. "time": "2020-10-12T14:33:05+00:00"
  4391. },
  4392. {
  4393. "name": "phpstan/phpstan-deprecation-rules",
  4394. "version": "0.11.2",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  4398. "reference": "5685fe48873efc5af1f2cc95d9c1b8ae82c728fe"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/5685fe48873efc5af1f2cc95d9c1b8ae82c728fe",
  4403. "reference": "5685fe48873efc5af1f2cc95d9c1b8ae82c728fe",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "nikic/php-parser": "^4.0",
  4408. "php": "~7.1",
  4409. "phpstan/phpstan": "^0.11.8"
  4410. },
  4411. "require-dev": {
  4412. "consistence/coding-standard": "^3.0.1",
  4413. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  4414. "jakub-onderka/php-parallel-lint": "^1.0",
  4415. "phing/phing": "^2.16.0",
  4416. "phpstan/phpstan-phpunit": "^0.11",
  4417. "phpunit/phpunit": "^7.0",
  4418. "slevomat/coding-standard": "^4.5.2"
  4419. },
  4420. "type": "phpstan-extension",
  4421. "extra": {
  4422. "branch-alias": {
  4423. "dev-master": "0.11-dev"
  4424. },
  4425. "phpstan": {
  4426. "includes": [
  4427. "rules.neon"
  4428. ]
  4429. }
  4430. },
  4431. "autoload": {
  4432. "psr-4": {
  4433. "PHPStan\\": "src/"
  4434. }
  4435. },
  4436. "notification-url": "https://packagist.org/downloads/",
  4437. "license": [
  4438. "MIT"
  4439. ],
  4440. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  4441. "time": "2019-05-28T19:54:04+00:00"
  4442. },
  4443. {
  4444. "name": "phpunit/php-code-coverage",
  4445. "version": "6.1.4",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4449. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4454. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4455. "shasum": ""
  4456. },
  4457. "require": {
  4458. "ext-dom": "*",
  4459. "ext-xmlwriter": "*",
  4460. "php": "^7.1",
  4461. "phpunit/php-file-iterator": "^2.0",
  4462. "phpunit/php-text-template": "^1.2.1",
  4463. "phpunit/php-token-stream": "^3.0",
  4464. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4465. "sebastian/environment": "^3.1 || ^4.0",
  4466. "sebastian/version": "^2.0.1",
  4467. "theseer/tokenizer": "^1.1"
  4468. },
  4469. "require-dev": {
  4470. "phpunit/phpunit": "^7.0"
  4471. },
  4472. "suggest": {
  4473. "ext-xdebug": "^2.6.0"
  4474. },
  4475. "type": "library",
  4476. "extra": {
  4477. "branch-alias": {
  4478. "dev-master": "6.1-dev"
  4479. }
  4480. },
  4481. "autoload": {
  4482. "classmap": [
  4483. "src/"
  4484. ]
  4485. },
  4486. "notification-url": "https://packagist.org/downloads/",
  4487. "license": [
  4488. "BSD-3-Clause"
  4489. ],
  4490. "authors": [
  4491. {
  4492. "name": "Sebastian Bergmann",
  4493. "email": "sebastian@phpunit.de",
  4494. "role": "lead"
  4495. }
  4496. ],
  4497. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4498. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4499. "keywords": [
  4500. "coverage",
  4501. "testing",
  4502. "xunit"
  4503. ],
  4504. "time": "2018-10-31T16:06:48+00:00"
  4505. },
  4506. {
  4507. "name": "phpunit/php-file-iterator",
  4508. "version": "2.0.2",
  4509. "source": {
  4510. "type": "git",
  4511. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4512. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  4513. },
  4514. "dist": {
  4515. "type": "zip",
  4516. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  4517. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  4518. "shasum": ""
  4519. },
  4520. "require": {
  4521. "php": "^7.1"
  4522. },
  4523. "require-dev": {
  4524. "phpunit/phpunit": "^7.1"
  4525. },
  4526. "type": "library",
  4527. "extra": {
  4528. "branch-alias": {
  4529. "dev-master": "2.0.x-dev"
  4530. }
  4531. },
  4532. "autoload": {
  4533. "classmap": [
  4534. "src/"
  4535. ]
  4536. },
  4537. "notification-url": "https://packagist.org/downloads/",
  4538. "license": [
  4539. "BSD-3-Clause"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Sebastian Bergmann",
  4544. "email": "sebastian@phpunit.de",
  4545. "role": "lead"
  4546. }
  4547. ],
  4548. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4549. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4550. "keywords": [
  4551. "filesystem",
  4552. "iterator"
  4553. ],
  4554. "time": "2018-09-13T20:33:42+00:00"
  4555. },
  4556. {
  4557. "name": "phpunit/php-text-template",
  4558. "version": "1.2.1",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4562. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4567. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4568. "shasum": ""
  4569. },
  4570. "require": {
  4571. "php": ">=5.3.3"
  4572. },
  4573. "type": "library",
  4574. "autoload": {
  4575. "classmap": [
  4576. "src/"
  4577. ]
  4578. },
  4579. "notification-url": "https://packagist.org/downloads/",
  4580. "license": [
  4581. "BSD-3-Clause"
  4582. ],
  4583. "authors": [
  4584. {
  4585. "name": "Sebastian Bergmann",
  4586. "email": "sebastian@phpunit.de",
  4587. "role": "lead"
  4588. }
  4589. ],
  4590. "description": "Simple template engine.",
  4591. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4592. "keywords": [
  4593. "template"
  4594. ],
  4595. "time": "2015-06-21T13:50:34+00:00"
  4596. },
  4597. {
  4598. "name": "phpunit/php-timer",
  4599. "version": "2.1.2",
  4600. "source": {
  4601. "type": "git",
  4602. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4603. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  4604. },
  4605. "dist": {
  4606. "type": "zip",
  4607. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  4608. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  4609. "shasum": ""
  4610. },
  4611. "require": {
  4612. "php": "^7.1"
  4613. },
  4614. "require-dev": {
  4615. "phpunit/phpunit": "^7.0"
  4616. },
  4617. "type": "library",
  4618. "extra": {
  4619. "branch-alias": {
  4620. "dev-master": "2.1-dev"
  4621. }
  4622. },
  4623. "autoload": {
  4624. "classmap": [
  4625. "src/"
  4626. ]
  4627. },
  4628. "notification-url": "https://packagist.org/downloads/",
  4629. "license": [
  4630. "BSD-3-Clause"
  4631. ],
  4632. "authors": [
  4633. {
  4634. "name": "Sebastian Bergmann",
  4635. "email": "sebastian@phpunit.de",
  4636. "role": "lead"
  4637. }
  4638. ],
  4639. "description": "Utility class for timing",
  4640. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4641. "keywords": [
  4642. "timer"
  4643. ],
  4644. "time": "2019-06-07T04:22:29+00:00"
  4645. },
  4646. {
  4647. "name": "phpunit/php-token-stream",
  4648. "version": "3.1.1",
  4649. "source": {
  4650. "type": "git",
  4651. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4652. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  4653. },
  4654. "dist": {
  4655. "type": "zip",
  4656. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  4657. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  4658. "shasum": ""
  4659. },
  4660. "require": {
  4661. "ext-tokenizer": "*",
  4662. "php": "^7.1"
  4663. },
  4664. "require-dev": {
  4665. "phpunit/phpunit": "^7.0"
  4666. },
  4667. "type": "library",
  4668. "extra": {
  4669. "branch-alias": {
  4670. "dev-master": "3.1-dev"
  4671. }
  4672. },
  4673. "autoload": {
  4674. "classmap": [
  4675. "src/"
  4676. ]
  4677. },
  4678. "notification-url": "https://packagist.org/downloads/",
  4679. "license": [
  4680. "BSD-3-Clause"
  4681. ],
  4682. "authors": [
  4683. {
  4684. "name": "Sebastian Bergmann",
  4685. "email": "sebastian@phpunit.de"
  4686. }
  4687. ],
  4688. "description": "Wrapper around PHP's tokenizer extension.",
  4689. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4690. "keywords": [
  4691. "tokenizer"
  4692. ],
  4693. "abandoned": true,
  4694. "time": "2019-09-17T06:23:10+00:00"
  4695. },
  4696. {
  4697. "name": "phpunit/phpunit",
  4698. "version": "7.5.20",
  4699. "source": {
  4700. "type": "git",
  4701. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4702. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  4703. },
  4704. "dist": {
  4705. "type": "zip",
  4706. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  4707. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  4708. "shasum": ""
  4709. },
  4710. "require": {
  4711. "doctrine/instantiator": "^1.1",
  4712. "ext-dom": "*",
  4713. "ext-json": "*",
  4714. "ext-libxml": "*",
  4715. "ext-mbstring": "*",
  4716. "ext-xml": "*",
  4717. "myclabs/deep-copy": "^1.7",
  4718. "phar-io/manifest": "^1.0.2",
  4719. "phar-io/version": "^2.0",
  4720. "php": "^7.1",
  4721. "phpspec/prophecy": "^1.7",
  4722. "phpunit/php-code-coverage": "^6.0.7",
  4723. "phpunit/php-file-iterator": "^2.0.1",
  4724. "phpunit/php-text-template": "^1.2.1",
  4725. "phpunit/php-timer": "^2.1",
  4726. "sebastian/comparator": "^3.0",
  4727. "sebastian/diff": "^3.0",
  4728. "sebastian/environment": "^4.0",
  4729. "sebastian/exporter": "^3.1",
  4730. "sebastian/global-state": "^2.0",
  4731. "sebastian/object-enumerator": "^3.0.3",
  4732. "sebastian/resource-operations": "^2.0",
  4733. "sebastian/version": "^2.0.1"
  4734. },
  4735. "conflict": {
  4736. "phpunit/phpunit-mock-objects": "*"
  4737. },
  4738. "require-dev": {
  4739. "ext-pdo": "*"
  4740. },
  4741. "suggest": {
  4742. "ext-soap": "*",
  4743. "ext-xdebug": "*",
  4744. "phpunit/php-invoker": "^2.0"
  4745. },
  4746. "bin": [
  4747. "phpunit"
  4748. ],
  4749. "type": "library",
  4750. "extra": {
  4751. "branch-alias": {
  4752. "dev-master": "7.5-dev"
  4753. }
  4754. },
  4755. "autoload": {
  4756. "classmap": [
  4757. "src/"
  4758. ]
  4759. },
  4760. "notification-url": "https://packagist.org/downloads/",
  4761. "license": [
  4762. "BSD-3-Clause"
  4763. ],
  4764. "authors": [
  4765. {
  4766. "name": "Sebastian Bergmann",
  4767. "email": "sebastian@phpunit.de",
  4768. "role": "lead"
  4769. }
  4770. ],
  4771. "description": "The PHP Unit Testing framework.",
  4772. "homepage": "https://phpunit.de/",
  4773. "keywords": [
  4774. "phpunit",
  4775. "testing",
  4776. "xunit"
  4777. ],
  4778. "time": "2020-01-08T08:45:45+00:00"
  4779. },
  4780. {
  4781. "name": "sebastian/code-unit-reverse-lookup",
  4782. "version": "1.0.1",
  4783. "source": {
  4784. "type": "git",
  4785. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4786. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  4787. },
  4788. "dist": {
  4789. "type": "zip",
  4790. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4791. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4792. "shasum": ""
  4793. },
  4794. "require": {
  4795. "php": "^5.6 || ^7.0"
  4796. },
  4797. "require-dev": {
  4798. "phpunit/phpunit": "^5.7 || ^6.0"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "branch-alias": {
  4803. "dev-master": "1.0.x-dev"
  4804. }
  4805. },
  4806. "autoload": {
  4807. "classmap": [
  4808. "src/"
  4809. ]
  4810. },
  4811. "notification-url": "https://packagist.org/downloads/",
  4812. "license": [
  4813. "BSD-3-Clause"
  4814. ],
  4815. "authors": [
  4816. {
  4817. "name": "Sebastian Bergmann",
  4818. "email": "sebastian@phpunit.de"
  4819. }
  4820. ],
  4821. "description": "Looks up which function or method a line of code belongs to",
  4822. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4823. "time": "2017-03-04T06:30:41+00:00"
  4824. },
  4825. {
  4826. "name": "sebastian/comparator",
  4827. "version": "3.0.2",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://github.com/sebastianbergmann/comparator.git",
  4831. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4836. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4837. "shasum": ""
  4838. },
  4839. "require": {
  4840. "php": "^7.1",
  4841. "sebastian/diff": "^3.0",
  4842. "sebastian/exporter": "^3.1"
  4843. },
  4844. "require-dev": {
  4845. "phpunit/phpunit": "^7.1"
  4846. },
  4847. "type": "library",
  4848. "extra": {
  4849. "branch-alias": {
  4850. "dev-master": "3.0-dev"
  4851. }
  4852. },
  4853. "autoload": {
  4854. "classmap": [
  4855. "src/"
  4856. ]
  4857. },
  4858. "notification-url": "https://packagist.org/downloads/",
  4859. "license": [
  4860. "BSD-3-Clause"
  4861. ],
  4862. "authors": [
  4863. {
  4864. "name": "Jeff Welch",
  4865. "email": "whatthejeff@gmail.com"
  4866. },
  4867. {
  4868. "name": "Volker Dusch",
  4869. "email": "github@wallbash.com"
  4870. },
  4871. {
  4872. "name": "Bernhard Schussek",
  4873. "email": "bschussek@2bepublished.at"
  4874. },
  4875. {
  4876. "name": "Sebastian Bergmann",
  4877. "email": "sebastian@phpunit.de"
  4878. }
  4879. ],
  4880. "description": "Provides the functionality to compare PHP values for equality",
  4881. "homepage": "https://github.com/sebastianbergmann/comparator",
  4882. "keywords": [
  4883. "comparator",
  4884. "compare",
  4885. "equality"
  4886. ],
  4887. "time": "2018-07-12T15:12:46+00:00"
  4888. },
  4889. {
  4890. "name": "sebastian/diff",
  4891. "version": "3.0.2",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://github.com/sebastianbergmann/diff.git",
  4895. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4900. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4901. "shasum": ""
  4902. },
  4903. "require": {
  4904. "php": "^7.1"
  4905. },
  4906. "require-dev": {
  4907. "phpunit/phpunit": "^7.5 || ^8.0",
  4908. "symfony/process": "^2 || ^3.3 || ^4"
  4909. },
  4910. "type": "library",
  4911. "extra": {
  4912. "branch-alias": {
  4913. "dev-master": "3.0-dev"
  4914. }
  4915. },
  4916. "autoload": {
  4917. "classmap": [
  4918. "src/"
  4919. ]
  4920. },
  4921. "notification-url": "https://packagist.org/downloads/",
  4922. "license": [
  4923. "BSD-3-Clause"
  4924. ],
  4925. "authors": [
  4926. {
  4927. "name": "Kore Nordmann",
  4928. "email": "mail@kore-nordmann.de"
  4929. },
  4930. {
  4931. "name": "Sebastian Bergmann",
  4932. "email": "sebastian@phpunit.de"
  4933. }
  4934. ],
  4935. "description": "Diff implementation",
  4936. "homepage": "https://github.com/sebastianbergmann/diff",
  4937. "keywords": [
  4938. "diff",
  4939. "udiff",
  4940. "unidiff",
  4941. "unified diff"
  4942. ],
  4943. "time": "2019-02-04T06:01:07+00:00"
  4944. },
  4945. {
  4946. "name": "sebastian/environment",
  4947. "version": "4.2.3",
  4948. "source": {
  4949. "type": "git",
  4950. "url": "https://github.com/sebastianbergmann/environment.git",
  4951. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  4952. },
  4953. "dist": {
  4954. "type": "zip",
  4955. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  4956. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  4957. "shasum": ""
  4958. },
  4959. "require": {
  4960. "php": "^7.1"
  4961. },
  4962. "require-dev": {
  4963. "phpunit/phpunit": "^7.5"
  4964. },
  4965. "suggest": {
  4966. "ext-posix": "*"
  4967. },
  4968. "type": "library",
  4969. "extra": {
  4970. "branch-alias": {
  4971. "dev-master": "4.2-dev"
  4972. }
  4973. },
  4974. "autoload": {
  4975. "classmap": [
  4976. "src/"
  4977. ]
  4978. },
  4979. "notification-url": "https://packagist.org/downloads/",
  4980. "license": [
  4981. "BSD-3-Clause"
  4982. ],
  4983. "authors": [
  4984. {
  4985. "name": "Sebastian Bergmann",
  4986. "email": "sebastian@phpunit.de"
  4987. }
  4988. ],
  4989. "description": "Provides functionality to handle HHVM/PHP environments",
  4990. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4991. "keywords": [
  4992. "Xdebug",
  4993. "environment",
  4994. "hhvm"
  4995. ],
  4996. "time": "2019-11-20T08:46:58+00:00"
  4997. },
  4998. {
  4999. "name": "sebastian/exporter",
  5000. "version": "3.1.2",
  5001. "source": {
  5002. "type": "git",
  5003. "url": "https://github.com/sebastianbergmann/exporter.git",
  5004. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  5005. },
  5006. "dist": {
  5007. "type": "zip",
  5008. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5009. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  5010. "shasum": ""
  5011. },
  5012. "require": {
  5013. "php": "^7.0",
  5014. "sebastian/recursion-context": "^3.0"
  5015. },
  5016. "require-dev": {
  5017. "ext-mbstring": "*",
  5018. "phpunit/phpunit": "^6.0"
  5019. },
  5020. "type": "library",
  5021. "extra": {
  5022. "branch-alias": {
  5023. "dev-master": "3.1.x-dev"
  5024. }
  5025. },
  5026. "autoload": {
  5027. "classmap": [
  5028. "src/"
  5029. ]
  5030. },
  5031. "notification-url": "https://packagist.org/downloads/",
  5032. "license": [
  5033. "BSD-3-Clause"
  5034. ],
  5035. "authors": [
  5036. {
  5037. "name": "Sebastian Bergmann",
  5038. "email": "sebastian@phpunit.de"
  5039. },
  5040. {
  5041. "name": "Jeff Welch",
  5042. "email": "whatthejeff@gmail.com"
  5043. },
  5044. {
  5045. "name": "Volker Dusch",
  5046. "email": "github@wallbash.com"
  5047. },
  5048. {
  5049. "name": "Adam Harvey",
  5050. "email": "aharvey@php.net"
  5051. },
  5052. {
  5053. "name": "Bernhard Schussek",
  5054. "email": "bschussek@gmail.com"
  5055. }
  5056. ],
  5057. "description": "Provides the functionality to export PHP variables for visualization",
  5058. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5059. "keywords": [
  5060. "export",
  5061. "exporter"
  5062. ],
  5063. "time": "2019-09-14T09:02:43+00:00"
  5064. },
  5065. {
  5066. "name": "sebastian/global-state",
  5067. "version": "2.0.0",
  5068. "source": {
  5069. "type": "git",
  5070. "url": "https://github.com/sebastianbergmann/global-state.git",
  5071. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  5072. },
  5073. "dist": {
  5074. "type": "zip",
  5075. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  5076. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  5077. "shasum": ""
  5078. },
  5079. "require": {
  5080. "php": "^7.0"
  5081. },
  5082. "require-dev": {
  5083. "phpunit/phpunit": "^6.0"
  5084. },
  5085. "suggest": {
  5086. "ext-uopz": "*"
  5087. },
  5088. "type": "library",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-master": "2.0-dev"
  5092. }
  5093. },
  5094. "autoload": {
  5095. "classmap": [
  5096. "src/"
  5097. ]
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "BSD-3-Clause"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "Sebastian Bergmann",
  5106. "email": "sebastian@phpunit.de"
  5107. }
  5108. ],
  5109. "description": "Snapshotting of global state",
  5110. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5111. "keywords": [
  5112. "global state"
  5113. ],
  5114. "time": "2017-04-27T15:39:26+00:00"
  5115. },
  5116. {
  5117. "name": "sebastian/object-enumerator",
  5118. "version": "3.0.3",
  5119. "source": {
  5120. "type": "git",
  5121. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5122. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5123. },
  5124. "dist": {
  5125. "type": "zip",
  5126. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5127. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5128. "shasum": ""
  5129. },
  5130. "require": {
  5131. "php": "^7.0",
  5132. "sebastian/object-reflector": "^1.1.1",
  5133. "sebastian/recursion-context": "^3.0"
  5134. },
  5135. "require-dev": {
  5136. "phpunit/phpunit": "^6.0"
  5137. },
  5138. "type": "library",
  5139. "extra": {
  5140. "branch-alias": {
  5141. "dev-master": "3.0.x-dev"
  5142. }
  5143. },
  5144. "autoload": {
  5145. "classmap": [
  5146. "src/"
  5147. ]
  5148. },
  5149. "notification-url": "https://packagist.org/downloads/",
  5150. "license": [
  5151. "BSD-3-Clause"
  5152. ],
  5153. "authors": [
  5154. {
  5155. "name": "Sebastian Bergmann",
  5156. "email": "sebastian@phpunit.de"
  5157. }
  5158. ],
  5159. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5160. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5161. "time": "2017-08-03T12:35:26+00:00"
  5162. },
  5163. {
  5164. "name": "sebastian/object-reflector",
  5165. "version": "1.1.1",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5169. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  5174. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "php": "^7.0"
  5179. },
  5180. "require-dev": {
  5181. "phpunit/phpunit": "^6.0"
  5182. },
  5183. "type": "library",
  5184. "extra": {
  5185. "branch-alias": {
  5186. "dev-master": "1.1-dev"
  5187. }
  5188. },
  5189. "autoload": {
  5190. "classmap": [
  5191. "src/"
  5192. ]
  5193. },
  5194. "notification-url": "https://packagist.org/downloads/",
  5195. "license": [
  5196. "BSD-3-Clause"
  5197. ],
  5198. "authors": [
  5199. {
  5200. "name": "Sebastian Bergmann",
  5201. "email": "sebastian@phpunit.de"
  5202. }
  5203. ],
  5204. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5205. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5206. "time": "2017-03-29T09:07:27+00:00"
  5207. },
  5208. {
  5209. "name": "sebastian/recursion-context",
  5210. "version": "3.0.0",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5214. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5219. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5220. "shasum": ""
  5221. },
  5222. "require": {
  5223. "php": "^7.0"
  5224. },
  5225. "require-dev": {
  5226. "phpunit/phpunit": "^6.0"
  5227. },
  5228. "type": "library",
  5229. "extra": {
  5230. "branch-alias": {
  5231. "dev-master": "3.0.x-dev"
  5232. }
  5233. },
  5234. "autoload": {
  5235. "classmap": [
  5236. "src/"
  5237. ]
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "BSD-3-Clause"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Jeff Welch",
  5246. "email": "whatthejeff@gmail.com"
  5247. },
  5248. {
  5249. "name": "Sebastian Bergmann",
  5250. "email": "sebastian@phpunit.de"
  5251. },
  5252. {
  5253. "name": "Adam Harvey",
  5254. "email": "aharvey@php.net"
  5255. }
  5256. ],
  5257. "description": "Provides functionality to recursively process PHP variables",
  5258. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5259. "time": "2017-03-03T06:23:57+00:00"
  5260. },
  5261. {
  5262. "name": "sebastian/resource-operations",
  5263. "version": "2.0.1",
  5264. "source": {
  5265. "type": "git",
  5266. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5267. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  5268. },
  5269. "dist": {
  5270. "type": "zip",
  5271. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5272. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5273. "shasum": ""
  5274. },
  5275. "require": {
  5276. "php": "^7.1"
  5277. },
  5278. "type": "library",
  5279. "extra": {
  5280. "branch-alias": {
  5281. "dev-master": "2.0-dev"
  5282. }
  5283. },
  5284. "autoload": {
  5285. "classmap": [
  5286. "src/"
  5287. ]
  5288. },
  5289. "notification-url": "https://packagist.org/downloads/",
  5290. "license": [
  5291. "BSD-3-Clause"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "Sebastian Bergmann",
  5296. "email": "sebastian@phpunit.de"
  5297. }
  5298. ],
  5299. "description": "Provides a list of PHP built-in functions that operate on resources",
  5300. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5301. "time": "2018-10-04T04:07:39+00:00"
  5302. },
  5303. {
  5304. "name": "sebastian/version",
  5305. "version": "2.0.1",
  5306. "source": {
  5307. "type": "git",
  5308. "url": "https://github.com/sebastianbergmann/version.git",
  5309. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5310. },
  5311. "dist": {
  5312. "type": "zip",
  5313. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5314. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5315. "shasum": ""
  5316. },
  5317. "require": {
  5318. "php": ">=5.6"
  5319. },
  5320. "type": "library",
  5321. "extra": {
  5322. "branch-alias": {
  5323. "dev-master": "2.0.x-dev"
  5324. }
  5325. },
  5326. "autoload": {
  5327. "classmap": [
  5328. "src/"
  5329. ]
  5330. },
  5331. "notification-url": "https://packagist.org/downloads/",
  5332. "license": [
  5333. "BSD-3-Clause"
  5334. ],
  5335. "authors": [
  5336. {
  5337. "name": "Sebastian Bergmann",
  5338. "email": "sebastian@phpunit.de",
  5339. "role": "lead"
  5340. }
  5341. ],
  5342. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5343. "homepage": "https://github.com/sebastianbergmann/version",
  5344. "time": "2016-10-03T07:35:21+00:00"
  5345. },
  5346. {
  5347. "name": "symfony/browser-kit",
  5348. "version": "v4.4.16",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/symfony/browser-kit.git",
  5352. "reference": "99b640fd5d06877e3242ba0393b40a7877dfe534"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/99b640fd5d06877e3242ba0393b40a7877dfe534",
  5357. "reference": "99b640fd5d06877e3242ba0393b40a7877dfe534",
  5358. "shasum": ""
  5359. },
  5360. "require": {
  5361. "php": ">=7.1.3",
  5362. "symfony/dom-crawler": "^3.4|^4.0|^5.0"
  5363. },
  5364. "require-dev": {
  5365. "symfony/css-selector": "^3.4|^4.0|^5.0",
  5366. "symfony/http-client": "^4.3|^5.0",
  5367. "symfony/mime": "^4.3|^5.0",
  5368. "symfony/process": "^3.4|^4.0|^5.0"
  5369. },
  5370. "suggest": {
  5371. "symfony/process": ""
  5372. },
  5373. "type": "library",
  5374. "autoload": {
  5375. "psr-4": {
  5376. "Symfony\\Component\\BrowserKit\\": ""
  5377. },
  5378. "exclude-from-classmap": [
  5379. "/Tests/"
  5380. ]
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Fabien Potencier",
  5389. "email": "fabien@symfony.com"
  5390. },
  5391. {
  5392. "name": "Symfony Community",
  5393. "homepage": "https://symfony.com/contributors"
  5394. }
  5395. ],
  5396. "description": "Symfony BrowserKit Component",
  5397. "homepage": "https://symfony.com",
  5398. "funding": [
  5399. {
  5400. "url": "https://symfony.com/sponsor",
  5401. "type": "custom"
  5402. },
  5403. {
  5404. "url": "https://github.com/fabpot",
  5405. "type": "github"
  5406. },
  5407. {
  5408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5409. "type": "tidelift"
  5410. }
  5411. ],
  5412. "time": "2020-10-24T11:50:19+00:00"
  5413. },
  5414. {
  5415. "name": "symfony/css-selector",
  5416. "version": "v4.4.16",
  5417. "source": {
  5418. "type": "git",
  5419. "url": "https://github.com/symfony/css-selector.git",
  5420. "reference": "719506cffda9dba80c75d94ac50f1a2561520e4f"
  5421. },
  5422. "dist": {
  5423. "type": "zip",
  5424. "url": "https://api.github.com/repos/symfony/css-selector/zipball/719506cffda9dba80c75d94ac50f1a2561520e4f",
  5425. "reference": "719506cffda9dba80c75d94ac50f1a2561520e4f",
  5426. "shasum": ""
  5427. },
  5428. "require": {
  5429. "php": ">=7.1.3"
  5430. },
  5431. "type": "library",
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Symfony\\Component\\CssSelector\\": ""
  5435. },
  5436. "exclude-from-classmap": [
  5437. "/Tests/"
  5438. ]
  5439. },
  5440. "notification-url": "https://packagist.org/downloads/",
  5441. "license": [
  5442. "MIT"
  5443. ],
  5444. "authors": [
  5445. {
  5446. "name": "Fabien Potencier",
  5447. "email": "fabien@symfony.com"
  5448. },
  5449. {
  5450. "name": "Jean-François Simon",
  5451. "email": "jeanfrancois.simon@sensiolabs.com"
  5452. },
  5453. {
  5454. "name": "Symfony Community",
  5455. "homepage": "https://symfony.com/contributors"
  5456. }
  5457. ],
  5458. "description": "Symfony CssSelector Component",
  5459. "homepage": "https://symfony.com",
  5460. "funding": [
  5461. {
  5462. "url": "https://symfony.com/sponsor",
  5463. "type": "custom"
  5464. },
  5465. {
  5466. "url": "https://github.com/fabpot",
  5467. "type": "github"
  5468. },
  5469. {
  5470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5471. "type": "tidelift"
  5472. }
  5473. ],
  5474. "time": "2020-10-24T11:50:19+00:00"
  5475. },
  5476. {
  5477. "name": "symfony/dom-crawler",
  5478. "version": "v4.4.16",
  5479. "source": {
  5480. "type": "git",
  5481. "url": "https://github.com/symfony/dom-crawler.git",
  5482. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e"
  5483. },
  5484. "dist": {
  5485. "type": "zip",
  5486. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  5487. "reference": "30ad9ac96a01913195bf0328d48e29d54fa53e6e",
  5488. "shasum": ""
  5489. },
  5490. "require": {
  5491. "php": ">=7.1.3",
  5492. "symfony/polyfill-ctype": "~1.8",
  5493. "symfony/polyfill-mbstring": "~1.0"
  5494. },
  5495. "conflict": {
  5496. "masterminds/html5": "<2.6"
  5497. },
  5498. "require-dev": {
  5499. "masterminds/html5": "^2.6",
  5500. "symfony/css-selector": "^3.4|^4.0|^5.0"
  5501. },
  5502. "suggest": {
  5503. "symfony/css-selector": ""
  5504. },
  5505. "type": "library",
  5506. "autoload": {
  5507. "psr-4": {
  5508. "Symfony\\Component\\DomCrawler\\": ""
  5509. },
  5510. "exclude-from-classmap": [
  5511. "/Tests/"
  5512. ]
  5513. },
  5514. "notification-url": "https://packagist.org/downloads/",
  5515. "license": [
  5516. "MIT"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "Fabien Potencier",
  5521. "email": "fabien@symfony.com"
  5522. },
  5523. {
  5524. "name": "Symfony Community",
  5525. "homepage": "https://symfony.com/contributors"
  5526. }
  5527. ],
  5528. "description": "Symfony DomCrawler Component",
  5529. "homepage": "https://symfony.com",
  5530. "funding": [
  5531. {
  5532. "url": "https://symfony.com/sponsor",
  5533. "type": "custom"
  5534. },
  5535. {
  5536. "url": "https://github.com/fabpot",
  5537. "type": "github"
  5538. },
  5539. {
  5540. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5541. "type": "tidelift"
  5542. }
  5543. ],
  5544. "time": "2020-10-24T11:50:19+00:00"
  5545. },
  5546. {
  5547. "name": "symfony/finder",
  5548. "version": "v4.4.16",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/symfony/finder.git",
  5552. "reference": "26f63b8d4e92f2eecd90f6791a563ebb001abe31"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/symfony/finder/zipball/26f63b8d4e92f2eecd90f6791a563ebb001abe31",
  5557. "reference": "26f63b8d4e92f2eecd90f6791a563ebb001abe31",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "php": ">=7.1.3"
  5562. },
  5563. "type": "library",
  5564. "autoload": {
  5565. "psr-4": {
  5566. "Symfony\\Component\\Finder\\": ""
  5567. },
  5568. "exclude-from-classmap": [
  5569. "/Tests/"
  5570. ]
  5571. },
  5572. "notification-url": "https://packagist.org/downloads/",
  5573. "license": [
  5574. "MIT"
  5575. ],
  5576. "authors": [
  5577. {
  5578. "name": "Fabien Potencier",
  5579. "email": "fabien@symfony.com"
  5580. },
  5581. {
  5582. "name": "Symfony Community",
  5583. "homepage": "https://symfony.com/contributors"
  5584. }
  5585. ],
  5586. "description": "Symfony Finder Component",
  5587. "homepage": "https://symfony.com",
  5588. "funding": [
  5589. {
  5590. "url": "https://symfony.com/sponsor",
  5591. "type": "custom"
  5592. },
  5593. {
  5594. "url": "https://github.com/fabpot",
  5595. "type": "github"
  5596. },
  5597. {
  5598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5599. "type": "tidelift"
  5600. }
  5601. ],
  5602. "time": "2020-10-24T11:50:19+00:00"
  5603. },
  5604. {
  5605. "name": "symfony/polyfill-intl-idn",
  5606. "version": "v1.20.0",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5610. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117"
  5611. },
  5612. "dist": {
  5613. "type": "zip",
  5614. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5615. "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117",
  5616. "shasum": ""
  5617. },
  5618. "require": {
  5619. "php": ">=7.1",
  5620. "symfony/polyfill-intl-normalizer": "^1.10",
  5621. "symfony/polyfill-php72": "^1.10"
  5622. },
  5623. "suggest": {
  5624. "ext-intl": "For best performance"
  5625. },
  5626. "type": "library",
  5627. "extra": {
  5628. "branch-alias": {
  5629. "dev-main": "1.20-dev"
  5630. },
  5631. "thanks": {
  5632. "name": "symfony/polyfill",
  5633. "url": "https://github.com/symfony/polyfill"
  5634. }
  5635. },
  5636. "autoload": {
  5637. "psr-4": {
  5638. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5639. },
  5640. "files": [
  5641. "bootstrap.php"
  5642. ]
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "MIT"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Laurent Bassin",
  5651. "email": "laurent@bassin.info"
  5652. },
  5653. {
  5654. "name": "Trevor Rowbotham",
  5655. "email": "trevor.rowbotham@pm.me"
  5656. },
  5657. {
  5658. "name": "Symfony Community",
  5659. "homepage": "https://symfony.com/contributors"
  5660. }
  5661. ],
  5662. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5663. "homepage": "https://symfony.com",
  5664. "keywords": [
  5665. "compatibility",
  5666. "idn",
  5667. "intl",
  5668. "polyfill",
  5669. "portable",
  5670. "shim"
  5671. ],
  5672. "funding": [
  5673. {
  5674. "url": "https://symfony.com/sponsor",
  5675. "type": "custom"
  5676. },
  5677. {
  5678. "url": "https://github.com/fabpot",
  5679. "type": "github"
  5680. },
  5681. {
  5682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5683. "type": "tidelift"
  5684. }
  5685. ],
  5686. "time": "2020-10-23T14:02:19+00:00"
  5687. },
  5688. {
  5689. "name": "symfony/polyfill-intl-normalizer",
  5690. "version": "v1.20.0",
  5691. "source": {
  5692. "type": "git",
  5693. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5694. "reference": "727d1096295d807c309fb01a851577302394c897"
  5695. },
  5696. "dist": {
  5697. "type": "zip",
  5698. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897",
  5699. "reference": "727d1096295d807c309fb01a851577302394c897",
  5700. "shasum": ""
  5701. },
  5702. "require": {
  5703. "php": ">=7.1"
  5704. },
  5705. "suggest": {
  5706. "ext-intl": "For best performance"
  5707. },
  5708. "type": "library",
  5709. "extra": {
  5710. "branch-alias": {
  5711. "dev-main": "1.20-dev"
  5712. },
  5713. "thanks": {
  5714. "name": "symfony/polyfill",
  5715. "url": "https://github.com/symfony/polyfill"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "psr-4": {
  5720. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5721. },
  5722. "files": [
  5723. "bootstrap.php"
  5724. ],
  5725. "classmap": [
  5726. "Resources/stubs"
  5727. ]
  5728. },
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "Nicolas Grekas",
  5736. "email": "p@tchwork.com"
  5737. },
  5738. {
  5739. "name": "Symfony Community",
  5740. "homepage": "https://symfony.com/contributors"
  5741. }
  5742. ],
  5743. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5744. "homepage": "https://symfony.com",
  5745. "keywords": [
  5746. "compatibility",
  5747. "intl",
  5748. "normalizer",
  5749. "polyfill",
  5750. "portable",
  5751. "shim"
  5752. ],
  5753. "funding": [
  5754. {
  5755. "url": "https://symfony.com/sponsor",
  5756. "type": "custom"
  5757. },
  5758. {
  5759. "url": "https://github.com/fabpot",
  5760. "type": "github"
  5761. },
  5762. {
  5763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5764. "type": "tidelift"
  5765. }
  5766. ],
  5767. "time": "2020-10-23T14:02:19+00:00"
  5768. },
  5769. {
  5770. "name": "theseer/tokenizer",
  5771. "version": "1.1.3",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://github.com/theseer/tokenizer.git",
  5775. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5780. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  5781. "shasum": ""
  5782. },
  5783. "require": {
  5784. "ext-dom": "*",
  5785. "ext-tokenizer": "*",
  5786. "ext-xmlwriter": "*",
  5787. "php": "^7.0"
  5788. },
  5789. "type": "library",
  5790. "autoload": {
  5791. "classmap": [
  5792. "src/"
  5793. ]
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "BSD-3-Clause"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Arne Blankerts",
  5802. "email": "arne@blankerts.de",
  5803. "role": "Developer"
  5804. }
  5805. ],
  5806. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5807. "time": "2019-06-13T22:48:21+00:00"
  5808. },
  5809. {
  5810. "name": "victorjonsson/markdowndocs",
  5811. "version": "dev-master",
  5812. "source": {
  5813. "type": "git",
  5814. "url": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator.git",
  5815. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed"
  5816. },
  5817. "dist": {
  5818. "type": "zip",
  5819. "url": "https://api.github.com/repos/trilbymedia/PHP-Markdown-Documentation-Generator/zipball/c9fa153b28a79f5da89ec32aa501be92db212aed",
  5820. "reference": "c9fa153b28a79f5da89ec32aa501be92db212aed",
  5821. "shasum": ""
  5822. },
  5823. "require": {
  5824. "php": ">=5.5.0",
  5825. "symfony/console": ">=2.6"
  5826. },
  5827. "require-dev": {
  5828. "phpunit/phpunit": "3.7.23"
  5829. },
  5830. "bin": [
  5831. "bin/phpdoc-md"
  5832. ],
  5833. "type": "library",
  5834. "autoload": {
  5835. "psr-0": {
  5836. "PHPDocsMD": "src/"
  5837. }
  5838. },
  5839. "license": [
  5840. "MIT"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "Victor Jonsson",
  5845. "email": "kontakt@victorjonsson.se"
  5846. }
  5847. ],
  5848. "description": "Command line tool for generating markdown-formatted class documentation",
  5849. "homepage": "https://github.com/victorjonsson/PHP-Markdown-Documentation-Generator",
  5850. "support": {
  5851. "source": "https://github.com/trilbymedia/PHP-Markdown-Documentation-Generator/tree/master"
  5852. },
  5853. "time": "2017-09-20T13:29:22+00:00"
  5854. },
  5855. {
  5856. "name": "webmozart/assert",
  5857. "version": "1.8.0",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://github.com/webmozart/assert.git",
  5861. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  5866. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  5867. "shasum": ""
  5868. },
  5869. "require": {
  5870. "php": "^5.3.3 || ^7.0",
  5871. "symfony/polyfill-ctype": "^1.8"
  5872. },
  5873. "conflict": {
  5874. "vimeo/psalm": "<3.9.1"
  5875. },
  5876. "require-dev": {
  5877. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  5878. },
  5879. "type": "library",
  5880. "autoload": {
  5881. "psr-4": {
  5882. "Webmozart\\Assert\\": "src/"
  5883. }
  5884. },
  5885. "notification-url": "https://packagist.org/downloads/",
  5886. "license": [
  5887. "MIT"
  5888. ],
  5889. "authors": [
  5890. {
  5891. "name": "Bernhard Schussek",
  5892. "email": "bschussek@gmail.com"
  5893. }
  5894. ],
  5895. "description": "Assertions to validate method input/output with nice error messages.",
  5896. "keywords": [
  5897. "assert",
  5898. "check",
  5899. "validate"
  5900. ],
  5901. "time": "2020-04-18T12:12:48+00:00"
  5902. }
  5903. ],
  5904. "aliases": [],
  5905. "minimum-stability": "stable",
  5906. "stability-flags": {
  5907. "willdurand/negotiation": 20,
  5908. "victorjonsson/markdowndocs": 20
  5909. },
  5910. "prefer-stable": false,
  5911. "prefer-lowest": false,
  5912. "platform": {
  5913. "php": ">=7.1.3",
  5914. "ext-json": "*",
  5915. "ext-mbstring": "*",
  5916. "ext-openssl": "*",
  5917. "ext-curl": "*",
  5918. "ext-zip": "*",
  5919. "ext-dom": "*"
  5920. },
  5921. "platform-dev": [],
  5922. "platform-overrides": {
  5923. "php": "7.1.3"
  5924. },
  5925. "plugin-api-version": "1.1.0"
  5926. }