composer.lock 195 KB

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