composer.lock 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326
  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": "595bb2ec87d0253b69e53bf5ca3de185",
  8. "packages": [
  9. {
  10. "name": "dibi/dibi",
  11. "version": "v4.1.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/dg/dibi.git",
  15. "reference": "ed2a82741993706c15dbd4f5b8dd7eb5b75f7aa2"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/dg/dibi/zipball/ed2a82741993706c15dbd4f5b8dd7eb5b75f7aa2",
  20. "reference": "ed2a82741993706c15dbd4f5b8dd7eb5b75f7aa2",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=7.1"
  25. },
  26. "replace": {
  27. "dg/dibi": "*"
  28. },
  29. "require-dev": {
  30. "nette/tester": "~2.0",
  31. "phpstan/phpstan": "^0.12",
  32. "tracy/tracy": "~2.2"
  33. },
  34. "type": "library",
  35. "extra": {
  36. "branch-alias": {
  37. "dev-master": "4.1-dev"
  38. }
  39. },
  40. "autoload": {
  41. "classmap": [
  42. "src/"
  43. ]
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "BSD-3-Clause",
  48. "GPL-2.0-only",
  49. "GPL-3.0-only"
  50. ],
  51. "authors": [
  52. {
  53. "name": "David Grudl",
  54. "homepage": "https://davidgrudl.com"
  55. }
  56. ],
  57. "description": "Dibi is Database Abstraction Library for PHP",
  58. "homepage": "https://dibiphp.com",
  59. "keywords": [
  60. "access",
  61. "database",
  62. "dbal",
  63. "mssql",
  64. "mysql",
  65. "odbc",
  66. "oracle",
  67. "pdo",
  68. "postgresql",
  69. "sqlite",
  70. "sqlsrv"
  71. ],
  72. "time": "2020-03-26T03:10:39+00:00"
  73. },
  74. {
  75. "name": "jeremeamia/superclosure",
  76. "version": "2.4.0",
  77. "source": {
  78. "type": "git",
  79. "url": "https://github.com/jeremeamia/super_closure.git",
  80. "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9"
  81. },
  82. "dist": {
  83. "type": "zip",
  84. "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
  85. "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
  86. "shasum": ""
  87. },
  88. "require": {
  89. "nikic/php-parser": "^1.2|^2.0|^3.0|^4.0",
  90. "php": ">=5.4",
  91. "symfony/polyfill-php56": "^1.0"
  92. },
  93. "require-dev": {
  94. "phpunit/phpunit": "^4.0|^5.0"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "2.4-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "SuperClosure\\": "src/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Jeremy Lindblom",
  114. "email": "jeremeamia@gmail.com",
  115. "homepage": "https://github.com/jeremeamia",
  116. "role": "Developer"
  117. }
  118. ],
  119. "description": "Serialize Closure objects, including their context and binding",
  120. "homepage": "https://github.com/jeremeamia/super_closure",
  121. "keywords": [
  122. "closure",
  123. "function",
  124. "lambda",
  125. "parser",
  126. "serializable",
  127. "serialize",
  128. "tokenizer"
  129. ],
  130. "abandoned": "opis/closure",
  131. "time": "2018-03-21T22:21:57+00:00"
  132. },
  133. {
  134. "name": "league/flysystem",
  135. "version": "1.0.67",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/thephpleague/flysystem.git",
  139. "reference": "5b1f36c75c4bdde981294c2a0ebdb437ee6f275e"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5b1f36c75c4bdde981294c2a0ebdb437ee6f275e",
  144. "reference": "5b1f36c75c4bdde981294c2a0ebdb437ee6f275e",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "ext-fileinfo": "*",
  149. "php": ">=5.5.9"
  150. },
  151. "conflict": {
  152. "league/flysystem-sftp": "<1.0.6"
  153. },
  154. "require-dev": {
  155. "phpspec/phpspec": "^3.4",
  156. "phpunit/phpunit": "^5.7.26"
  157. },
  158. "suggest": {
  159. "ext-fileinfo": "Required for MimeType",
  160. "ext-ftp": "Allows you to use FTP server storage",
  161. "ext-openssl": "Allows you to use FTPS server storage",
  162. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  163. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  164. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  165. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  166. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  167. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  168. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  169. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  170. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  171. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  172. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  173. },
  174. "type": "library",
  175. "extra": {
  176. "branch-alias": {
  177. "dev-master": "1.1-dev"
  178. }
  179. },
  180. "autoload": {
  181. "psr-4": {
  182. "League\\Flysystem\\": "src/"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Frank de Jonge",
  192. "email": "info@frenky.net"
  193. }
  194. ],
  195. "description": "Filesystem abstraction: Many filesystems, one API.",
  196. "keywords": [
  197. "Cloud Files",
  198. "WebDAV",
  199. "abstraction",
  200. "aws",
  201. "cloud",
  202. "copy.com",
  203. "dropbox",
  204. "file systems",
  205. "files",
  206. "filesystem",
  207. "filesystems",
  208. "ftp",
  209. "rackspace",
  210. "remote",
  211. "s3",
  212. "sftp",
  213. "storage"
  214. ],
  215. "funding": [
  216. {
  217. "url": "https://offset.earth/frankdejonge",
  218. "type": "other"
  219. }
  220. ],
  221. "time": "2020-04-16T13:21:26+00:00"
  222. },
  223. {
  224. "name": "league/flysystem-sftp",
  225. "version": "1.0.22",
  226. "source": {
  227. "type": "git",
  228. "url": "https://github.com/thephpleague/flysystem-sftp.git",
  229. "reference": "cab59dd2277e02fe46f5f23195672a02ed49774d"
  230. },
  231. "dist": {
  232. "type": "zip",
  233. "url": "https://api.github.com/repos/thephpleague/flysystem-sftp/zipball/cab59dd2277e02fe46f5f23195672a02ed49774d",
  234. "reference": "cab59dd2277e02fe46f5f23195672a02ed49774d",
  235. "shasum": ""
  236. },
  237. "require": {
  238. "league/flysystem": "~1.0",
  239. "php": ">=5.6.0",
  240. "phpseclib/phpseclib": "~2.0"
  241. },
  242. "require-dev": {
  243. "mockery/mockery": "0.9.*",
  244. "phpunit/phpunit": "^5.7.25"
  245. },
  246. "type": "library",
  247. "autoload": {
  248. "psr-4": {
  249. "League\\Flysystem\\Sftp\\": "src/"
  250. }
  251. },
  252. "notification-url": "https://packagist.org/downloads/",
  253. "license": [
  254. "MIT"
  255. ],
  256. "authors": [
  257. {
  258. "name": "Frank de Jonge",
  259. "email": "info@frenky.net"
  260. }
  261. ],
  262. "description": "Flysystem adapter for SFTP",
  263. "time": "2019-10-16T20:05:49+00:00"
  264. },
  265. {
  266. "name": "league/flysystem-ziparchive",
  267. "version": "1.0.2",
  268. "source": {
  269. "type": "git",
  270. "url": "https://github.com/thephpleague/flysystem-ziparchive.git",
  271. "reference": "ab2e804c6c121e30f8ccb0c996bf418c3c8ccab8"
  272. },
  273. "dist": {
  274. "type": "zip",
  275. "url": "https://api.github.com/repos/thephpleague/flysystem-ziparchive/zipball/ab2e804c6c121e30f8ccb0c996bf418c3c8ccab8",
  276. "reference": "ab2e804c6c121e30f8ccb0c996bf418c3c8ccab8",
  277. "shasum": ""
  278. },
  279. "require": {
  280. "league/flysystem": "~1.0@alpha",
  281. "php": ">=5.4.0"
  282. },
  283. "require-dev": {
  284. "mockery/mockery": "0.9.*",
  285. "phpunit/phpunit": "~4.0"
  286. },
  287. "type": "library",
  288. "extra": {
  289. "branch-alias": {
  290. "dev-master": "1.0-dev"
  291. }
  292. },
  293. "autoload": {
  294. "psr-4": {
  295. "League\\Flysystem\\ZipArchive\\": "src/"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "MIT"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Frank de Jonge",
  305. "email": "info@frenky.net"
  306. }
  307. ],
  308. "description": "Flysystem adapter for ZipArchive's",
  309. "time": "2015-04-21T12:14:28+00:00"
  310. },
  311. {
  312. "name": "monolog/monolog",
  313. "version": "1.25.3",
  314. "source": {
  315. "type": "git",
  316. "url": "https://github.com/Seldaek/monolog.git",
  317. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1"
  318. },
  319. "dist": {
  320. "type": "zip",
  321. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1",
  322. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1",
  323. "shasum": ""
  324. },
  325. "require": {
  326. "php": ">=5.3.0",
  327. "psr/log": "~1.0"
  328. },
  329. "provide": {
  330. "psr/log-implementation": "1.0.0"
  331. },
  332. "require-dev": {
  333. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  334. "doctrine/couchdb": "~1.0@dev",
  335. "graylog2/gelf-php": "~1.0",
  336. "jakub-onderka/php-parallel-lint": "0.9",
  337. "php-amqplib/php-amqplib": "~2.4",
  338. "php-console/php-console": "^3.1.3",
  339. "phpunit/phpunit": "~4.5",
  340. "phpunit/phpunit-mock-objects": "2.3.0",
  341. "ruflin/elastica": ">=0.90 <3.0",
  342. "sentry/sentry": "^0.13",
  343. "swiftmailer/swiftmailer": "^5.3|^6.0"
  344. },
  345. "suggest": {
  346. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  347. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  348. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  349. "ext-mongo": "Allow sending log messages to a MongoDB server",
  350. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  351. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  352. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  353. "php-console/php-console": "Allow sending log messages to Google Chrome",
  354. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  355. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  356. "sentry/sentry": "Allow sending log messages to a Sentry server"
  357. },
  358. "type": "library",
  359. "extra": {
  360. "branch-alias": {
  361. "dev-master": "2.0.x-dev"
  362. }
  363. },
  364. "autoload": {
  365. "psr-4": {
  366. "Monolog\\": "src/Monolog"
  367. }
  368. },
  369. "notification-url": "https://packagist.org/downloads/",
  370. "license": [
  371. "MIT"
  372. ],
  373. "authors": [
  374. {
  375. "name": "Jordi Boggiano",
  376. "email": "j.boggiano@seld.be",
  377. "homepage": "http://seld.be"
  378. }
  379. ],
  380. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  381. "homepage": "http://github.com/Seldaek/monolog",
  382. "keywords": [
  383. "log",
  384. "logging",
  385. "psr-3"
  386. ],
  387. "time": "2019-12-20T14:15:16+00:00"
  388. },
  389. {
  390. "name": "nikic/fast-route",
  391. "version": "v1.3.0",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/nikic/FastRoute.git",
  395. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  400. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  401. "shasum": ""
  402. },
  403. "require": {
  404. "php": ">=5.4.0"
  405. },
  406. "require-dev": {
  407. "phpunit/phpunit": "^4.8.35|~5.7"
  408. },
  409. "type": "library",
  410. "autoload": {
  411. "psr-4": {
  412. "FastRoute\\": "src/"
  413. },
  414. "files": [
  415. "src/functions.php"
  416. ]
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "BSD-3-Clause"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Nikita Popov",
  425. "email": "nikic@php.net"
  426. }
  427. ],
  428. "description": "Fast request router for PHP",
  429. "keywords": [
  430. "router",
  431. "routing"
  432. ],
  433. "time": "2018-02-13T20:26:39+00:00"
  434. },
  435. {
  436. "name": "nikic/php-parser",
  437. "version": "v4.4.0",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/nikic/PHP-Parser.git",
  441. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  446. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "ext-tokenizer": "*",
  451. "php": ">=7.0"
  452. },
  453. "require-dev": {
  454. "ircmaxell/php-yacc": "0.0.5",
  455. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  456. },
  457. "bin": [
  458. "bin/php-parse"
  459. ],
  460. "type": "library",
  461. "extra": {
  462. "branch-alias": {
  463. "dev-master": "4.3-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "PhpParser\\": "lib/PhpParser"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "BSD-3-Clause"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Nikita Popov"
  478. }
  479. ],
  480. "description": "A PHP parser written in PHP",
  481. "keywords": [
  482. "parser",
  483. "php"
  484. ],
  485. "time": "2020-04-10T16:34:50+00:00"
  486. },
  487. {
  488. "name": "php-di/invoker",
  489. "version": "2.0.0",
  490. "source": {
  491. "type": "git",
  492. "url": "https://github.com/PHP-DI/Invoker.git",
  493. "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a"
  494. },
  495. "dist": {
  496. "type": "zip",
  497. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/540c27c86f663e20fe39a24cd72fa76cdb21d41a",
  498. "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a",
  499. "shasum": ""
  500. },
  501. "require": {
  502. "psr/container": "~1.0"
  503. },
  504. "require-dev": {
  505. "athletic/athletic": "~0.1.8",
  506. "phpunit/phpunit": "~4.5"
  507. },
  508. "type": "library",
  509. "autoload": {
  510. "psr-4": {
  511. "Invoker\\": "src/"
  512. }
  513. },
  514. "notification-url": "https://packagist.org/downloads/",
  515. "license": [
  516. "MIT"
  517. ],
  518. "description": "Generic and extensible callable invoker",
  519. "homepage": "https://github.com/PHP-DI/Invoker",
  520. "keywords": [
  521. "callable",
  522. "dependency",
  523. "dependency-injection",
  524. "injection",
  525. "invoke",
  526. "invoker"
  527. ],
  528. "time": "2017-03-20T19:28:22+00:00"
  529. },
  530. {
  531. "name": "php-di/php-di",
  532. "version": "6.0.11",
  533. "source": {
  534. "type": "git",
  535. "url": "https://github.com/PHP-DI/PHP-DI.git",
  536. "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620"
  537. },
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620",
  541. "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620",
  542. "shasum": ""
  543. },
  544. "require": {
  545. "jeremeamia/superclosure": "^2.0",
  546. "nikic/php-parser": "^2.0|^3.0|^4.0",
  547. "php": ">=7.0.0",
  548. "php-di/invoker": "^2.0",
  549. "php-di/phpdoc-reader": "^2.0.1",
  550. "psr/container": "^1.0"
  551. },
  552. "provide": {
  553. "psr/container-implementation": "^1.0"
  554. },
  555. "require-dev": {
  556. "doctrine/annotations": "~1.2",
  557. "friendsofphp/php-cs-fixer": "^2.4",
  558. "mnapoli/phpunit-easymock": "~1.0",
  559. "ocramius/proxy-manager": "~2.0.2",
  560. "phpstan/phpstan": "^0.9.2",
  561. "phpunit/phpunit": "~6.4"
  562. },
  563. "suggest": {
  564. "doctrine/annotations": "Install it if you want to use annotations (version ~1.2)",
  565. "ocramius/proxy-manager": "Install it if you want to use lazy injection (version ~2.0)"
  566. },
  567. "type": "library",
  568. "autoload": {
  569. "psr-4": {
  570. "DI\\": "src/"
  571. },
  572. "files": [
  573. "src/functions.php"
  574. ]
  575. },
  576. "notification-url": "https://packagist.org/downloads/",
  577. "license": [
  578. "MIT"
  579. ],
  580. "description": "The dependency injection container for humans",
  581. "homepage": "http://php-di.org/",
  582. "keywords": [
  583. "PSR-11",
  584. "container",
  585. "container-interop",
  586. "dependency injection",
  587. "di",
  588. "ioc",
  589. "psr11"
  590. ],
  591. "time": "2019-12-12T07:58:02+00:00"
  592. },
  593. {
  594. "name": "php-di/phpdoc-reader",
  595. "version": "2.1.1",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  599. "reference": "15678f7451c020226807f520efb867ad26fbbfcf"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/15678f7451c020226807f520efb867ad26fbbfcf",
  604. "reference": "15678f7451c020226807f520efb867ad26fbbfcf",
  605. "shasum": ""
  606. },
  607. "require": {
  608. "php": ">=5.4.0"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": "~4.6"
  612. },
  613. "type": "library",
  614. "autoload": {
  615. "psr-4": {
  616. "PhpDocReader\\": "src/PhpDocReader"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  624. "keywords": [
  625. "phpdoc",
  626. "reflection"
  627. ],
  628. "time": "2019-09-26T11:24:58+00:00"
  629. },
  630. {
  631. "name": "phpseclib/phpseclib",
  632. "version": "2.0.27",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/phpseclib/phpseclib.git",
  636. "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc",
  641. "reference": "34620af4df7d1988d8f0d7e91f6c8a3bf931d8dc",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": ">=5.3.3"
  646. },
  647. "require-dev": {
  648. "phing/phing": "~2.7",
  649. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  650. "sami/sami": "~2.0",
  651. "squizlabs/php_codesniffer": "~2.0"
  652. },
  653. "suggest": {
  654. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  655. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  656. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  657. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  658. },
  659. "type": "library",
  660. "autoload": {
  661. "files": [
  662. "phpseclib/bootstrap.php"
  663. ],
  664. "psr-4": {
  665. "phpseclib\\": "phpseclib/"
  666. }
  667. },
  668. "notification-url": "https://packagist.org/downloads/",
  669. "license": [
  670. "MIT"
  671. ],
  672. "authors": [
  673. {
  674. "name": "Jim Wigginton",
  675. "email": "terrafrost@php.net",
  676. "role": "Lead Developer"
  677. },
  678. {
  679. "name": "Patrick Monnerat",
  680. "email": "pm@datasphere.ch",
  681. "role": "Developer"
  682. },
  683. {
  684. "name": "Andreas Fischer",
  685. "email": "bantu@phpbb.com",
  686. "role": "Developer"
  687. },
  688. {
  689. "name": "Hans-Jürgen Petrich",
  690. "email": "petrich@tronic-media.com",
  691. "role": "Developer"
  692. },
  693. {
  694. "name": "Graham Campbell",
  695. "email": "graham@alt-three.com",
  696. "role": "Developer"
  697. }
  698. ],
  699. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  700. "homepage": "http://phpseclib.sourceforge.net",
  701. "keywords": [
  702. "BigInteger",
  703. "aes",
  704. "asn.1",
  705. "asn1",
  706. "blowfish",
  707. "crypto",
  708. "cryptography",
  709. "encryption",
  710. "rsa",
  711. "security",
  712. "sftp",
  713. "signature",
  714. "signing",
  715. "ssh",
  716. "twofish",
  717. "x.509",
  718. "x509"
  719. ],
  720. "funding": [
  721. {
  722. "url": "https://github.com/terrafrost",
  723. "type": "github"
  724. },
  725. {
  726. "url": "https://www.patreon.com/phpseclib",
  727. "type": "patreon"
  728. },
  729. {
  730. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  731. "type": "tidelift"
  732. }
  733. ],
  734. "time": "2020-04-04T23:17:33+00:00"
  735. },
  736. {
  737. "name": "psr/container",
  738. "version": "1.0.0",
  739. "source": {
  740. "type": "git",
  741. "url": "https://github.com/php-fig/container.git",
  742. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  743. },
  744. "dist": {
  745. "type": "zip",
  746. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  747. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  748. "shasum": ""
  749. },
  750. "require": {
  751. "php": ">=5.3.0"
  752. },
  753. "type": "library",
  754. "extra": {
  755. "branch-alias": {
  756. "dev-master": "1.0.x-dev"
  757. }
  758. },
  759. "autoload": {
  760. "psr-4": {
  761. "Psr\\Container\\": "src/"
  762. }
  763. },
  764. "notification-url": "https://packagist.org/downloads/",
  765. "license": [
  766. "MIT"
  767. ],
  768. "authors": [
  769. {
  770. "name": "PHP-FIG",
  771. "homepage": "http://www.php-fig.org/"
  772. }
  773. ],
  774. "description": "Common Container Interface (PHP FIG PSR-11)",
  775. "homepage": "https://github.com/php-fig/container",
  776. "keywords": [
  777. "PSR-11",
  778. "container",
  779. "container-interface",
  780. "container-interop",
  781. "psr"
  782. ],
  783. "time": "2017-02-14T16:28:37+00:00"
  784. },
  785. {
  786. "name": "psr/log",
  787. "version": "1.1.3",
  788. "source": {
  789. "type": "git",
  790. "url": "https://github.com/php-fig/log.git",
  791. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  792. },
  793. "dist": {
  794. "type": "zip",
  795. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  796. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  797. "shasum": ""
  798. },
  799. "require": {
  800. "php": ">=5.3.0"
  801. },
  802. "type": "library",
  803. "extra": {
  804. "branch-alias": {
  805. "dev-master": "1.1.x-dev"
  806. }
  807. },
  808. "autoload": {
  809. "psr-4": {
  810. "Psr\\Log\\": "Psr/Log/"
  811. }
  812. },
  813. "notification-url": "https://packagist.org/downloads/",
  814. "license": [
  815. "MIT"
  816. ],
  817. "authors": [
  818. {
  819. "name": "PHP-FIG",
  820. "homepage": "http://www.php-fig.org/"
  821. }
  822. ],
  823. "description": "Common interface for logging libraries",
  824. "homepage": "https://github.com/php-fig/log",
  825. "keywords": [
  826. "log",
  827. "psr",
  828. "psr-3"
  829. ],
  830. "time": "2020-03-23T09:12:05+00:00"
  831. },
  832. {
  833. "name": "rakit/validation",
  834. "version": "v1.2.0",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/rakit/validation.git",
  838. "reference": "d7710a2c8133d89b5640b79e832f370ad2d58767"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/rakit/validation/zipball/d7710a2c8133d89b5640b79e832f370ad2d58767",
  843. "reference": "d7710a2c8133d89b5640b79e832f370ad2d58767",
  844. "shasum": ""
  845. },
  846. "require": {
  847. "ext-mbstring": "*",
  848. "php": ">=7.0"
  849. },
  850. "require-dev": {
  851. "phpunit/phpunit": "^6.5",
  852. "squizlabs/php_codesniffer": "^3"
  853. },
  854. "type": "library",
  855. "autoload": {
  856. "psr-4": {
  857. "Rakit\\Validation\\": "src"
  858. }
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "MIT"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Muhammad Syifa",
  867. "email": "emsifa@gmail.com"
  868. }
  869. ],
  870. "description": "PHP Laravel like standalone validation library",
  871. "time": "2019-07-10T03:20:16+00:00"
  872. },
  873. {
  874. "name": "symfony/event-dispatcher-contracts",
  875. "version": "v1.1.7",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  879. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  884. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  885. "shasum": ""
  886. },
  887. "require": {
  888. "php": "^7.1.3"
  889. },
  890. "suggest": {
  891. "psr/event-dispatcher": "",
  892. "symfony/event-dispatcher-implementation": ""
  893. },
  894. "type": "library",
  895. "extra": {
  896. "branch-alias": {
  897. "dev-master": "1.1-dev"
  898. }
  899. },
  900. "autoload": {
  901. "psr-4": {
  902. "Symfony\\Contracts\\EventDispatcher\\": ""
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Nicolas Grekas",
  912. "email": "p@tchwork.com"
  913. },
  914. {
  915. "name": "Symfony Community",
  916. "homepage": "https://symfony.com/contributors"
  917. }
  918. ],
  919. "description": "Generic abstractions related to dispatching event",
  920. "homepage": "https://symfony.com",
  921. "keywords": [
  922. "abstractions",
  923. "contracts",
  924. "decoupling",
  925. "interfaces",
  926. "interoperability",
  927. "standards"
  928. ],
  929. "time": "2019-09-17T09:54:03+00:00"
  930. },
  931. {
  932. "name": "symfony/http-foundation",
  933. "version": "v4.4.8",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/symfony/http-foundation.git",
  937. "reference": "ec5bd254c223786f5fa2bb49a1e705c1b8e7cee2"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ec5bd254c223786f5fa2bb49a1e705c1b8e7cee2",
  942. "reference": "ec5bd254c223786f5fa2bb49a1e705c1b8e7cee2",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": "^7.1.3",
  947. "symfony/mime": "^4.3|^5.0",
  948. "symfony/polyfill-mbstring": "~1.1"
  949. },
  950. "require-dev": {
  951. "predis/predis": "~1.0",
  952. "symfony/expression-language": "^3.4|^4.0|^5.0"
  953. },
  954. "type": "library",
  955. "extra": {
  956. "branch-alias": {
  957. "dev-master": "4.4-dev"
  958. }
  959. },
  960. "autoload": {
  961. "psr-4": {
  962. "Symfony\\Component\\HttpFoundation\\": ""
  963. },
  964. "exclude-from-classmap": [
  965. "/Tests/"
  966. ]
  967. },
  968. "notification-url": "https://packagist.org/downloads/",
  969. "license": [
  970. "MIT"
  971. ],
  972. "authors": [
  973. {
  974. "name": "Fabien Potencier",
  975. "email": "fabien@symfony.com"
  976. },
  977. {
  978. "name": "Symfony Community",
  979. "homepage": "https://symfony.com/contributors"
  980. }
  981. ],
  982. "description": "Symfony HttpFoundation Component",
  983. "homepage": "https://symfony.com",
  984. "funding": [
  985. {
  986. "url": "https://symfony.com/sponsor",
  987. "type": "custom"
  988. },
  989. {
  990. "url": "https://github.com/fabpot",
  991. "type": "github"
  992. },
  993. {
  994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  995. "type": "tidelift"
  996. }
  997. ],
  998. "time": "2020-04-18T20:40:08+00:00"
  999. },
  1000. {
  1001. "name": "symfony/mime",
  1002. "version": "v4.4.8",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/symfony/mime.git",
  1006. "reference": "7a583ffb6c7dd5aabb5db920817a3cc39261c517"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/symfony/mime/zipball/7a583ffb6c7dd5aabb5db920817a3cc39261c517",
  1011. "reference": "7a583ffb6c7dd5aabb5db920817a3cc39261c517",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "php": "^7.1.3",
  1016. "symfony/polyfill-intl-idn": "^1.10",
  1017. "symfony/polyfill-mbstring": "^1.0"
  1018. },
  1019. "conflict": {
  1020. "symfony/mailer": "<4.4"
  1021. },
  1022. "require-dev": {
  1023. "egulias/email-validator": "^2.1.10",
  1024. "symfony/dependency-injection": "^3.4|^4.1|^5.0"
  1025. },
  1026. "type": "library",
  1027. "extra": {
  1028. "branch-alias": {
  1029. "dev-master": "4.4-dev"
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "Symfony\\Component\\Mime\\": ""
  1035. },
  1036. "exclude-from-classmap": [
  1037. "/Tests/"
  1038. ]
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "MIT"
  1043. ],
  1044. "authors": [
  1045. {
  1046. "name": "Fabien Potencier",
  1047. "email": "fabien@symfony.com"
  1048. },
  1049. {
  1050. "name": "Symfony Community",
  1051. "homepage": "https://symfony.com/contributors"
  1052. }
  1053. ],
  1054. "description": "A library to manipulate MIME messages",
  1055. "homepage": "https://symfony.com",
  1056. "keywords": [
  1057. "mime",
  1058. "mime-type"
  1059. ],
  1060. "funding": [
  1061. {
  1062. "url": "https://symfony.com/sponsor",
  1063. "type": "custom"
  1064. },
  1065. {
  1066. "url": "https://github.com/fabpot",
  1067. "type": "github"
  1068. },
  1069. {
  1070. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1071. "type": "tidelift"
  1072. }
  1073. ],
  1074. "time": "2020-04-16T14:49:30+00:00"
  1075. },
  1076. {
  1077. "name": "symfony/polyfill-intl-idn",
  1078. "version": "v1.16.0",
  1079. "source": {
  1080. "type": "git",
  1081. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1082. "reference": "ab0af41deab94ec8dceb3d1fb408bdd038eba4dc"
  1083. },
  1084. "dist": {
  1085. "type": "zip",
  1086. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ab0af41deab94ec8dceb3d1fb408bdd038eba4dc",
  1087. "reference": "ab0af41deab94ec8dceb3d1fb408bdd038eba4dc",
  1088. "shasum": ""
  1089. },
  1090. "require": {
  1091. "php": ">=5.3.3",
  1092. "symfony/polyfill-mbstring": "^1.3",
  1093. "symfony/polyfill-php72": "^1.10"
  1094. },
  1095. "suggest": {
  1096. "ext-intl": "For best performance"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "branch-alias": {
  1101. "dev-master": "1.16-dev"
  1102. }
  1103. },
  1104. "autoload": {
  1105. "psr-4": {
  1106. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1107. },
  1108. "files": [
  1109. "bootstrap.php"
  1110. ]
  1111. },
  1112. "notification-url": "https://packagist.org/downloads/",
  1113. "license": [
  1114. "MIT"
  1115. ],
  1116. "authors": [
  1117. {
  1118. "name": "Laurent Bassin",
  1119. "email": "laurent@bassin.info"
  1120. },
  1121. {
  1122. "name": "Symfony Community",
  1123. "homepage": "https://symfony.com/contributors"
  1124. }
  1125. ],
  1126. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1127. "homepage": "https://symfony.com",
  1128. "keywords": [
  1129. "compatibility",
  1130. "idn",
  1131. "intl",
  1132. "polyfill",
  1133. "portable",
  1134. "shim"
  1135. ],
  1136. "funding": [
  1137. {
  1138. "url": "https://symfony.com/sponsor",
  1139. "type": "custom"
  1140. },
  1141. {
  1142. "url": "https://github.com/fabpot",
  1143. "type": "github"
  1144. },
  1145. {
  1146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1147. "type": "tidelift"
  1148. }
  1149. ],
  1150. "time": "2020-05-08T16:50:20+00:00"
  1151. },
  1152. {
  1153. "name": "symfony/polyfill-mbstring",
  1154. "version": "v1.16.0",
  1155. "source": {
  1156. "type": "git",
  1157. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1158. "reference": "a54881ec0ab3b2005c406aed0023c062879031e7"
  1159. },
  1160. "dist": {
  1161. "type": "zip",
  1162. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a54881ec0ab3b2005c406aed0023c062879031e7",
  1163. "reference": "a54881ec0ab3b2005c406aed0023c062879031e7",
  1164. "shasum": ""
  1165. },
  1166. "require": {
  1167. "php": ">=5.3.3"
  1168. },
  1169. "suggest": {
  1170. "ext-mbstring": "For best performance"
  1171. },
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "1.16-dev"
  1176. }
  1177. },
  1178. "autoload": {
  1179. "psr-4": {
  1180. "Symfony\\Polyfill\\Mbstring\\": ""
  1181. },
  1182. "files": [
  1183. "bootstrap.php"
  1184. ]
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Nicolas Grekas",
  1193. "email": "p@tchwork.com"
  1194. },
  1195. {
  1196. "name": "Symfony Community",
  1197. "homepage": "https://symfony.com/contributors"
  1198. }
  1199. ],
  1200. "description": "Symfony polyfill for the Mbstring extension",
  1201. "homepage": "https://symfony.com",
  1202. "keywords": [
  1203. "compatibility",
  1204. "mbstring",
  1205. "polyfill",
  1206. "portable",
  1207. "shim"
  1208. ],
  1209. "funding": [
  1210. {
  1211. "url": "https://symfony.com/sponsor",
  1212. "type": "custom"
  1213. },
  1214. {
  1215. "url": "https://github.com/fabpot",
  1216. "type": "github"
  1217. },
  1218. {
  1219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1220. "type": "tidelift"
  1221. }
  1222. ],
  1223. "time": "2020-05-08T16:50:20+00:00"
  1224. },
  1225. {
  1226. "name": "symfony/polyfill-php56",
  1227. "version": "v1.16.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/symfony/polyfill-php56.git",
  1231. "reference": "14b55b0e88c67c6a14526799abaea197dde78911"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/14b55b0e88c67c6a14526799abaea197dde78911",
  1236. "reference": "14b55b0e88c67c6a14526799abaea197dde78911",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": ">=5.3.3",
  1241. "symfony/polyfill-util": "~1.0"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "1.16-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Symfony\\Polyfill\\Php56\\": ""
  1252. },
  1253. "files": [
  1254. "bootstrap.php"
  1255. ]
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Nicolas Grekas",
  1264. "email": "p@tchwork.com"
  1265. },
  1266. {
  1267. "name": "Symfony Community",
  1268. "homepage": "https://symfony.com/contributors"
  1269. }
  1270. ],
  1271. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1272. "homepage": "https://symfony.com",
  1273. "keywords": [
  1274. "compatibility",
  1275. "polyfill",
  1276. "portable",
  1277. "shim"
  1278. ],
  1279. "funding": [
  1280. {
  1281. "url": "https://symfony.com/sponsor",
  1282. "type": "custom"
  1283. },
  1284. {
  1285. "url": "https://github.com/fabpot",
  1286. "type": "github"
  1287. },
  1288. {
  1289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1290. "type": "tidelift"
  1291. }
  1292. ],
  1293. "time": "2020-05-08T16:50:20+00:00"
  1294. },
  1295. {
  1296. "name": "symfony/polyfill-php72",
  1297. "version": "v1.16.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/symfony/polyfill-php72.git",
  1301. "reference": "42fda6d7380e5c940d7f68341ccae89d5ab9963b"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/42fda6d7380e5c940d7f68341ccae89d5ab9963b",
  1306. "reference": "42fda6d7380e5c940d7f68341ccae89d5ab9963b",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": ">=5.3.3"
  1311. },
  1312. "type": "library",
  1313. "extra": {
  1314. "branch-alias": {
  1315. "dev-master": "1.16-dev"
  1316. }
  1317. },
  1318. "autoload": {
  1319. "psr-4": {
  1320. "Symfony\\Polyfill\\Php72\\": ""
  1321. },
  1322. "files": [
  1323. "bootstrap.php"
  1324. ]
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Nicolas Grekas",
  1333. "email": "p@tchwork.com"
  1334. },
  1335. {
  1336. "name": "Symfony Community",
  1337. "homepage": "https://symfony.com/contributors"
  1338. }
  1339. ],
  1340. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1341. "homepage": "https://symfony.com",
  1342. "keywords": [
  1343. "compatibility",
  1344. "polyfill",
  1345. "portable",
  1346. "shim"
  1347. ],
  1348. "funding": [
  1349. {
  1350. "url": "https://symfony.com/sponsor",
  1351. "type": "custom"
  1352. },
  1353. {
  1354. "url": "https://github.com/fabpot",
  1355. "type": "github"
  1356. },
  1357. {
  1358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1359. "type": "tidelift"
  1360. }
  1361. ],
  1362. "time": "2020-05-08T17:28:34+00:00"
  1363. },
  1364. {
  1365. "name": "symfony/polyfill-util",
  1366. "version": "v1.16.0",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/symfony/polyfill-util.git",
  1370. "reference": "fa1fdaf94e8a60932d8821692eb1ed07efc52db2"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/fa1fdaf94e8a60932d8821692eb1ed07efc52db2",
  1375. "reference": "fa1fdaf94e8a60932d8821692eb1ed07efc52db2",
  1376. "shasum": ""
  1377. },
  1378. "require": {
  1379. "php": ">=5.3.3"
  1380. },
  1381. "type": "library",
  1382. "extra": {
  1383. "branch-alias": {
  1384. "dev-master": "1.16-dev"
  1385. }
  1386. },
  1387. "autoload": {
  1388. "psr-4": {
  1389. "Symfony\\Polyfill\\Util\\": ""
  1390. }
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Nicolas Grekas",
  1399. "email": "p@tchwork.com"
  1400. },
  1401. {
  1402. "name": "Symfony Community",
  1403. "homepage": "https://symfony.com/contributors"
  1404. }
  1405. ],
  1406. "description": "Symfony utilities for portability of PHP codes",
  1407. "homepage": "https://symfony.com",
  1408. "keywords": [
  1409. "compat",
  1410. "compatibility",
  1411. "polyfill",
  1412. "shim"
  1413. ],
  1414. "funding": [
  1415. {
  1416. "url": "https://symfony.com/sponsor",
  1417. "type": "custom"
  1418. },
  1419. {
  1420. "url": "https://github.com/fabpot",
  1421. "type": "github"
  1422. },
  1423. {
  1424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1425. "type": "tidelift"
  1426. }
  1427. ],
  1428. "time": "2020-05-02T14:56:09+00:00"
  1429. },
  1430. {
  1431. "name": "symfony/security-core",
  1432. "version": "v4.4.8",
  1433. "source": {
  1434. "type": "git",
  1435. "url": "https://github.com/symfony/security-core.git",
  1436. "reference": "fc84e9481e5bd9d80f70c0d8151601211377a5dc"
  1437. },
  1438. "dist": {
  1439. "type": "zip",
  1440. "url": "https://api.github.com/repos/symfony/security-core/zipball/fc84e9481e5bd9d80f70c0d8151601211377a5dc",
  1441. "reference": "fc84e9481e5bd9d80f70c0d8151601211377a5dc",
  1442. "shasum": ""
  1443. },
  1444. "require": {
  1445. "php": "^7.1.3",
  1446. "symfony/event-dispatcher-contracts": "^1.1|^2",
  1447. "symfony/service-contracts": "^1.1.6|^2"
  1448. },
  1449. "conflict": {
  1450. "symfony/event-dispatcher": "<4.3|>=5",
  1451. "symfony/ldap": "<4.4",
  1452. "symfony/security-guard": "<4.3"
  1453. },
  1454. "require-dev": {
  1455. "psr/container": "^1.0",
  1456. "psr/log": "~1.0",
  1457. "symfony/event-dispatcher": "^4.3",
  1458. "symfony/expression-language": "^3.4|^4.0|^5.0",
  1459. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  1460. "symfony/ldap": "^4.4|^5.0",
  1461. "symfony/validator": "^3.4.31|^4.3.4|^5.0"
  1462. },
  1463. "suggest": {
  1464. "psr/container-implementation": "To instantiate the Security class",
  1465. "symfony/event-dispatcher": "",
  1466. "symfony/expression-language": "For using the expression voter",
  1467. "symfony/http-foundation": "",
  1468. "symfony/ldap": "For using LDAP integration",
  1469. "symfony/validator": "For using the user password constraint"
  1470. },
  1471. "type": "library",
  1472. "extra": {
  1473. "branch-alias": {
  1474. "dev-master": "4.4-dev"
  1475. }
  1476. },
  1477. "autoload": {
  1478. "psr-4": {
  1479. "Symfony\\Component\\Security\\Core\\": ""
  1480. },
  1481. "exclude-from-classmap": [
  1482. "/Tests/"
  1483. ]
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "MIT"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "Fabien Potencier",
  1492. "email": "fabien@symfony.com"
  1493. },
  1494. {
  1495. "name": "Symfony Community",
  1496. "homepage": "https://symfony.com/contributors"
  1497. }
  1498. ],
  1499. "description": "Symfony Security Component - Core Library",
  1500. "homepage": "https://symfony.com",
  1501. "funding": [
  1502. {
  1503. "url": "https://symfony.com/sponsor",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://github.com/fabpot",
  1508. "type": "github"
  1509. },
  1510. {
  1511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1512. "type": "tidelift"
  1513. }
  1514. ],
  1515. "time": "2020-04-21T21:19:23+00:00"
  1516. },
  1517. {
  1518. "name": "symfony/security-csrf",
  1519. "version": "v4.4.8",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/symfony/security-csrf.git",
  1523. "reference": "286a71ff176e1b0dd071f0e73dcec0970a56634b"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/286a71ff176e1b0dd071f0e73dcec0970a56634b",
  1528. "reference": "286a71ff176e1b0dd071f0e73dcec0970a56634b",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "php": "^7.1.3",
  1533. "symfony/security-core": "^3.4|^4.0|^5.0"
  1534. },
  1535. "conflict": {
  1536. "symfony/http-foundation": "<3.4"
  1537. },
  1538. "require-dev": {
  1539. "symfony/http-foundation": "^3.4|^4.0|^5.0"
  1540. },
  1541. "suggest": {
  1542. "symfony/http-foundation": "For using the class SessionTokenStorage."
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "4.4-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Symfony\\Component\\Security\\Csrf\\": ""
  1553. },
  1554. "exclude-from-classmap": [
  1555. "/Tests/"
  1556. ]
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Fabien Potencier",
  1565. "email": "fabien@symfony.com"
  1566. },
  1567. {
  1568. "name": "Symfony Community",
  1569. "homepage": "https://symfony.com/contributors"
  1570. }
  1571. ],
  1572. "description": "Symfony Security Component - CSRF Library",
  1573. "homepage": "https://symfony.com",
  1574. "funding": [
  1575. {
  1576. "url": "https://symfony.com/sponsor",
  1577. "type": "custom"
  1578. },
  1579. {
  1580. "url": "https://github.com/fabpot",
  1581. "type": "github"
  1582. },
  1583. {
  1584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1585. "type": "tidelift"
  1586. }
  1587. ],
  1588. "time": "2020-03-27T16:54:36+00:00"
  1589. },
  1590. {
  1591. "name": "symfony/service-contracts",
  1592. "version": "v1.1.8",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/symfony/service-contracts.git",
  1596. "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
  1601. "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "php": "^7.1.3",
  1606. "psr/container": "^1.0"
  1607. },
  1608. "suggest": {
  1609. "symfony/service-implementation": ""
  1610. },
  1611. "type": "library",
  1612. "extra": {
  1613. "branch-alias": {
  1614. "dev-master": "1.1-dev"
  1615. }
  1616. },
  1617. "autoload": {
  1618. "psr-4": {
  1619. "Symfony\\Contracts\\Service\\": ""
  1620. }
  1621. },
  1622. "notification-url": "https://packagist.org/downloads/",
  1623. "license": [
  1624. "MIT"
  1625. ],
  1626. "authors": [
  1627. {
  1628. "name": "Nicolas Grekas",
  1629. "email": "p@tchwork.com"
  1630. },
  1631. {
  1632. "name": "Symfony Community",
  1633. "homepage": "https://symfony.com/contributors"
  1634. }
  1635. ],
  1636. "description": "Generic abstractions related to writing services",
  1637. "homepage": "https://symfony.com",
  1638. "keywords": [
  1639. "abstractions",
  1640. "contracts",
  1641. "decoupling",
  1642. "interfaces",
  1643. "interoperability",
  1644. "standards"
  1645. ],
  1646. "time": "2019-10-14T12:27:06+00:00"
  1647. }
  1648. ],
  1649. "packages-dev": [
  1650. {
  1651. "name": "composer/package-versions-deprecated",
  1652. "version": "1.8.0",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/composer/package-versions-deprecated.git",
  1656. "reference": "98df7f1b293c0550bd5b1ce6b60b59bdda23aa47"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/98df7f1b293c0550bd5b1ce6b60b59bdda23aa47",
  1661. "reference": "98df7f1b293c0550bd5b1ce6b60b59bdda23aa47",
  1662. "shasum": ""
  1663. },
  1664. "require": {
  1665. "composer-plugin-api": "^1.1.0 || ^2.0",
  1666. "php": "^7"
  1667. },
  1668. "replace": {
  1669. "ocramius/package-versions": "1.2 - 1.8.99"
  1670. },
  1671. "require-dev": {
  1672. "composer/composer": "^1.9.3 || ^2.0@dev",
  1673. "ext-zip": "^1.13",
  1674. "phpunit/phpunit": "^6.5 || ^7"
  1675. },
  1676. "type": "composer-plugin",
  1677. "extra": {
  1678. "class": "PackageVersions\\Installer",
  1679. "branch-alias": {
  1680. "dev-master": "1.x-dev"
  1681. }
  1682. },
  1683. "autoload": {
  1684. "psr-4": {
  1685. "PackageVersions\\": "src/PackageVersions"
  1686. }
  1687. },
  1688. "notification-url": "https://packagist.org/downloads/",
  1689. "license": [
  1690. "MIT"
  1691. ],
  1692. "authors": [
  1693. {
  1694. "name": "Marco Pivetta",
  1695. "email": "ocramius@gmail.com"
  1696. },
  1697. {
  1698. "name": "Jordi Boggiano",
  1699. "email": "j.boggiano@seld.be"
  1700. }
  1701. ],
  1702. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  1703. "funding": [
  1704. {
  1705. "url": "https://packagist.com",
  1706. "type": "custom"
  1707. },
  1708. {
  1709. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1710. "type": "tidelift"
  1711. }
  1712. ],
  1713. "time": "2020-04-23T11:49:37+00:00"
  1714. },
  1715. {
  1716. "name": "composer/xdebug-handler",
  1717. "version": "1.4.1",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/composer/xdebug-handler.git",
  1721. "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7",
  1726. "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7",
  1727. "shasum": ""
  1728. },
  1729. "require": {
  1730. "php": "^5.3.2 || ^7.0 || ^8.0",
  1731. "psr/log": "^1.0"
  1732. },
  1733. "require-dev": {
  1734. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  1735. },
  1736. "type": "library",
  1737. "autoload": {
  1738. "psr-4": {
  1739. "Composer\\XdebugHandler\\": "src"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "John Stevenson",
  1749. "email": "john-stevenson@blueyonder.co.uk"
  1750. }
  1751. ],
  1752. "description": "Restarts a process without Xdebug.",
  1753. "keywords": [
  1754. "Xdebug",
  1755. "performance"
  1756. ],
  1757. "funding": [
  1758. {
  1759. "url": "https://packagist.com",
  1760. "type": "custom"
  1761. }
  1762. ],
  1763. "time": "2020-03-01T12:26:26+00:00"
  1764. },
  1765. {
  1766. "name": "doctrine/instantiator",
  1767. "version": "1.3.0",
  1768. "source": {
  1769. "type": "git",
  1770. "url": "https://github.com/doctrine/instantiator.git",
  1771. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  1772. },
  1773. "dist": {
  1774. "type": "zip",
  1775. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  1776. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  1777. "shasum": ""
  1778. },
  1779. "require": {
  1780. "php": "^7.1"
  1781. },
  1782. "require-dev": {
  1783. "doctrine/coding-standard": "^6.0",
  1784. "ext-pdo": "*",
  1785. "ext-phar": "*",
  1786. "phpbench/phpbench": "^0.13",
  1787. "phpstan/phpstan-phpunit": "^0.11",
  1788. "phpstan/phpstan-shim": "^0.11",
  1789. "phpunit/phpunit": "^7.0"
  1790. },
  1791. "type": "library",
  1792. "extra": {
  1793. "branch-alias": {
  1794. "dev-master": "1.2.x-dev"
  1795. }
  1796. },
  1797. "autoload": {
  1798. "psr-4": {
  1799. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "Marco Pivetta",
  1809. "email": "ocramius@gmail.com",
  1810. "homepage": "http://ocramius.github.com/"
  1811. }
  1812. ],
  1813. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1814. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1815. "keywords": [
  1816. "constructor",
  1817. "instantiate"
  1818. ],
  1819. "time": "2019-10-21T16:45:58+00:00"
  1820. },
  1821. {
  1822. "name": "jean85/pretty-package-versions",
  1823. "version": "1.3.0",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "https://github.com/Jean85/pretty-package-versions.git",
  1827. "reference": "e3517fb11b67e798239354fe8213927d012ad8f9"
  1828. },
  1829. "dist": {
  1830. "type": "zip",
  1831. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/e3517fb11b67e798239354fe8213927d012ad8f9",
  1832. "reference": "e3517fb11b67e798239354fe8213927d012ad8f9",
  1833. "shasum": ""
  1834. },
  1835. "require": {
  1836. "composer/package-versions-deprecated": "^1.8.0",
  1837. "php": "^7.0"
  1838. },
  1839. "require-dev": {
  1840. "phpunit/phpunit": "^6.0"
  1841. },
  1842. "type": "library",
  1843. "extra": {
  1844. "branch-alias": {
  1845. "dev-master": "1.x-dev"
  1846. }
  1847. },
  1848. "autoload": {
  1849. "psr-4": {
  1850. "Jean85\\": "src/"
  1851. }
  1852. },
  1853. "notification-url": "https://packagist.org/downloads/",
  1854. "license": [
  1855. "MIT"
  1856. ],
  1857. "authors": [
  1858. {
  1859. "name": "Alessandro Lai",
  1860. "email": "alessandro.lai85@gmail.com"
  1861. }
  1862. ],
  1863. "description": "A wrapper for ocramius/package-versions to get pretty versions strings",
  1864. "keywords": [
  1865. "composer",
  1866. "package",
  1867. "release",
  1868. "versions"
  1869. ],
  1870. "time": "2020-04-24T14:19:45+00:00"
  1871. },
  1872. {
  1873. "name": "league/flysystem-memory",
  1874. "version": "1.0.2",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/thephpleague/flysystem-memory.git",
  1878. "reference": "d0e87477c32e29f999b4de05e64c1adcddb51757"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/thephpleague/flysystem-memory/zipball/d0e87477c32e29f999b4de05e64c1adcddb51757",
  1883. "reference": "d0e87477c32e29f999b4de05e64c1adcddb51757",
  1884. "shasum": ""
  1885. },
  1886. "require": {
  1887. "league/flysystem": "~1.0"
  1888. },
  1889. "require-dev": {
  1890. "phpunit/phpunit": "^5.7.10"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "branch-alias": {
  1895. "dev-master": "1.0-dev"
  1896. }
  1897. },
  1898. "autoload": {
  1899. "psr-4": {
  1900. "League\\Flysystem\\Memory\\": "src/"
  1901. }
  1902. },
  1903. "notification-url": "https://packagist.org/downloads/",
  1904. "license": [
  1905. "MIT"
  1906. ],
  1907. "authors": [
  1908. {
  1909. "name": "Chris Leppanen",
  1910. "email": "chris.leppanen@gmail.com",
  1911. "role": "Developer"
  1912. }
  1913. ],
  1914. "description": "An in-memory adapter for Flysystem.",
  1915. "homepage": "https://github.com/thephpleague/flysystem-memory",
  1916. "keywords": [
  1917. "Flysystem",
  1918. "adapter",
  1919. "memory"
  1920. ],
  1921. "time": "2019-05-30T21:34:13+00:00"
  1922. },
  1923. {
  1924. "name": "myclabs/deep-copy",
  1925. "version": "1.9.5",
  1926. "source": {
  1927. "type": "git",
  1928. "url": "https://github.com/myclabs/DeepCopy.git",
  1929. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  1930. },
  1931. "dist": {
  1932. "type": "zip",
  1933. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  1934. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  1935. "shasum": ""
  1936. },
  1937. "require": {
  1938. "php": "^7.1"
  1939. },
  1940. "replace": {
  1941. "myclabs/deep-copy": "self.version"
  1942. },
  1943. "require-dev": {
  1944. "doctrine/collections": "^1.0",
  1945. "doctrine/common": "^2.6",
  1946. "phpunit/phpunit": "^7.1"
  1947. },
  1948. "type": "library",
  1949. "autoload": {
  1950. "psr-4": {
  1951. "DeepCopy\\": "src/DeepCopy/"
  1952. },
  1953. "files": [
  1954. "src/DeepCopy/deep_copy.php"
  1955. ]
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "description": "Create deep copies (clones) of your objects",
  1962. "keywords": [
  1963. "clone",
  1964. "copy",
  1965. "duplicate",
  1966. "object",
  1967. "object graph"
  1968. ],
  1969. "time": "2020-01-17T21:11:47+00:00"
  1970. },
  1971. {
  1972. "name": "nette/bootstrap",
  1973. "version": "v3.0.1",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/nette/bootstrap.git",
  1977. "reference": "b45a1e33b6a44beb307756522396551e5a9ff249"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/nette/bootstrap/zipball/b45a1e33b6a44beb307756522396551e5a9ff249",
  1982. "reference": "b45a1e33b6a44beb307756522396551e5a9ff249",
  1983. "shasum": ""
  1984. },
  1985. "require": {
  1986. "nette/di": "^3.0",
  1987. "nette/utils": "^3.0",
  1988. "php": ">=7.1"
  1989. },
  1990. "conflict": {
  1991. "tracy/tracy": "<2.6"
  1992. },
  1993. "require-dev": {
  1994. "latte/latte": "^2.2",
  1995. "nette/application": "^3.0",
  1996. "nette/caching": "^3.0",
  1997. "nette/database": "^3.0",
  1998. "nette/forms": "^3.0",
  1999. "nette/http": "^3.0",
  2000. "nette/mail": "^3.0",
  2001. "nette/robot-loader": "^3.0",
  2002. "nette/safe-stream": "^2.2",
  2003. "nette/security": "^3.0",
  2004. "nette/tester": "^2.0",
  2005. "tracy/tracy": "^2.6"
  2006. },
  2007. "suggest": {
  2008. "nette/robot-loader": "to use Configurator::createRobotLoader()",
  2009. "tracy/tracy": "to use Configurator::enableTracy()"
  2010. },
  2011. "type": "library",
  2012. "extra": {
  2013. "branch-alias": {
  2014. "dev-master": "3.0-dev"
  2015. }
  2016. },
  2017. "autoload": {
  2018. "classmap": [
  2019. "src/"
  2020. ]
  2021. },
  2022. "notification-url": "https://packagist.org/downloads/",
  2023. "license": [
  2024. "BSD-3-Clause",
  2025. "GPL-2.0",
  2026. "GPL-3.0"
  2027. ],
  2028. "authors": [
  2029. {
  2030. "name": "David Grudl",
  2031. "homepage": "https://davidgrudl.com"
  2032. },
  2033. {
  2034. "name": "Nette Community",
  2035. "homepage": "https://nette.org/contributors"
  2036. }
  2037. ],
  2038. "description": "🅱 Nette Bootstrap: the simple way to configure and bootstrap your Nette application.",
  2039. "homepage": "https://nette.org",
  2040. "keywords": [
  2041. "bootstrapping",
  2042. "configurator",
  2043. "nette"
  2044. ],
  2045. "time": "2019-09-30T08:19:38+00:00"
  2046. },
  2047. {
  2048. "name": "nette/di",
  2049. "version": "v3.0.3",
  2050. "source": {
  2051. "type": "git",
  2052. "url": "https://github.com/nette/di.git",
  2053. "reference": "77d69061cbf8f9cfb7363dd983136f51213d3e41"
  2054. },
  2055. "dist": {
  2056. "type": "zip",
  2057. "url": "https://api.github.com/repos/nette/di/zipball/77d69061cbf8f9cfb7363dd983136f51213d3e41",
  2058. "reference": "77d69061cbf8f9cfb7363dd983136f51213d3e41",
  2059. "shasum": ""
  2060. },
  2061. "require": {
  2062. "ext-tokenizer": "*",
  2063. "nette/neon": "^3.0",
  2064. "nette/php-generator": "^3.3.3",
  2065. "nette/robot-loader": "^3.2",
  2066. "nette/schema": "^1.0",
  2067. "nette/utils": "^3.1",
  2068. "php": ">=7.1"
  2069. },
  2070. "conflict": {
  2071. "nette/bootstrap": "<3.0"
  2072. },
  2073. "require-dev": {
  2074. "nette/tester": "^2.2",
  2075. "phpstan/phpstan": "^0.12",
  2076. "tracy/tracy": "^2.3"
  2077. },
  2078. "type": "library",
  2079. "extra": {
  2080. "branch-alias": {
  2081. "dev-master": "3.0-dev"
  2082. }
  2083. },
  2084. "autoload": {
  2085. "classmap": [
  2086. "src/"
  2087. ]
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "BSD-3-Clause",
  2092. "GPL-2.0-only",
  2093. "GPL-3.0-only"
  2094. ],
  2095. "authors": [
  2096. {
  2097. "name": "David Grudl",
  2098. "homepage": "https://davidgrudl.com"
  2099. },
  2100. {
  2101. "name": "Nette Community",
  2102. "homepage": "https://nette.org/contributors"
  2103. }
  2104. ],
  2105. "description": "💎 Nette Dependency Injection Container: Flexible, compiled and full-featured DIC with perfectly usable autowiring and support for all new PHP 7.1 features.",
  2106. "homepage": "https://nette.org",
  2107. "keywords": [
  2108. "compiled",
  2109. "di",
  2110. "dic",
  2111. "factory",
  2112. "ioc",
  2113. "nette",
  2114. "static"
  2115. ],
  2116. "time": "2020-01-20T12:14:54+00:00"
  2117. },
  2118. {
  2119. "name": "nette/finder",
  2120. "version": "v2.5.2",
  2121. "source": {
  2122. "type": "git",
  2123. "url": "https://github.com/nette/finder.git",
  2124. "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50"
  2125. },
  2126. "dist": {
  2127. "type": "zip",
  2128. "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
  2129. "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50",
  2130. "shasum": ""
  2131. },
  2132. "require": {
  2133. "nette/utils": "^2.4 || ^3.0",
  2134. "php": ">=7.1"
  2135. },
  2136. "conflict": {
  2137. "nette/nette": "<2.2"
  2138. },
  2139. "require-dev": {
  2140. "nette/tester": "^2.0",
  2141. "phpstan/phpstan": "^0.12",
  2142. "tracy/tracy": "^2.3"
  2143. },
  2144. "type": "library",
  2145. "extra": {
  2146. "branch-alias": {
  2147. "dev-master": "2.5-dev"
  2148. }
  2149. },
  2150. "autoload": {
  2151. "classmap": [
  2152. "src/"
  2153. ]
  2154. },
  2155. "notification-url": "https://packagist.org/downloads/",
  2156. "license": [
  2157. "BSD-3-Clause",
  2158. "GPL-2.0",
  2159. "GPL-3.0"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "David Grudl",
  2164. "homepage": "https://davidgrudl.com"
  2165. },
  2166. {
  2167. "name": "Nette Community",
  2168. "homepage": "https://nette.org/contributors"
  2169. }
  2170. ],
  2171. "description": "🔍 Nette Finder: find files and directories with an intuitive API.",
  2172. "homepage": "https://nette.org",
  2173. "keywords": [
  2174. "filesystem",
  2175. "glob",
  2176. "iterator",
  2177. "nette"
  2178. ],
  2179. "time": "2020-01-03T20:35:40+00:00"
  2180. },
  2181. {
  2182. "name": "nette/neon",
  2183. "version": "v3.1.2",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/nette/neon.git",
  2187. "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/nette/neon/zipball/3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
  2192. "reference": "3c3dcbc6bf6c80dc97b1fc4ba9a22ae67930fc0e",
  2193. "shasum": ""
  2194. },
  2195. "require": {
  2196. "ext-iconv": "*",
  2197. "ext-json": "*",
  2198. "php": ">=7.1"
  2199. },
  2200. "require-dev": {
  2201. "nette/tester": "^2.0",
  2202. "phpstan/phpstan": "^0.12",
  2203. "tracy/tracy": "^2.3"
  2204. },
  2205. "type": "library",
  2206. "extra": {
  2207. "branch-alias": {
  2208. "dev-master": "3.1-dev"
  2209. }
  2210. },
  2211. "autoload": {
  2212. "classmap": [
  2213. "src/"
  2214. ]
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "BSD-3-Clause",
  2219. "GPL-2.0-only",
  2220. "GPL-3.0-only"
  2221. ],
  2222. "authors": [
  2223. {
  2224. "name": "David Grudl",
  2225. "homepage": "https://davidgrudl.com"
  2226. },
  2227. {
  2228. "name": "Nette Community",
  2229. "homepage": "https://nette.org/contributors"
  2230. }
  2231. ],
  2232. "description": "🍸 Nette NEON: encodes and decodes NEON file format.",
  2233. "homepage": "https://ne-on.org",
  2234. "keywords": [
  2235. "export",
  2236. "import",
  2237. "neon",
  2238. "nette",
  2239. "yaml"
  2240. ],
  2241. "time": "2020-03-04T11:47:04+00:00"
  2242. },
  2243. {
  2244. "name": "nette/php-generator",
  2245. "version": "v3.3.4",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/nette/php-generator.git",
  2249. "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/nette/php-generator/zipball/8fe7e699dca7db186f56d75800cb1ec32e39c856",
  2254. "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856",
  2255. "shasum": ""
  2256. },
  2257. "require": {
  2258. "nette/utils": "^2.4.2 || ^3.0",
  2259. "php": ">=7.1"
  2260. },
  2261. "require-dev": {
  2262. "nette/tester": "^2.0",
  2263. "phpstan/phpstan": "^0.12",
  2264. "tracy/tracy": "^2.3"
  2265. },
  2266. "type": "library",
  2267. "extra": {
  2268. "branch-alias": {
  2269. "dev-master": "3.3-dev"
  2270. }
  2271. },
  2272. "autoload": {
  2273. "classmap": [
  2274. "src/"
  2275. ]
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "BSD-3-Clause",
  2280. "GPL-2.0-only",
  2281. "GPL-3.0-only"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "David Grudl",
  2286. "homepage": "https://davidgrudl.com"
  2287. },
  2288. {
  2289. "name": "Nette Community",
  2290. "homepage": "https://nette.org/contributors"
  2291. }
  2292. ],
  2293. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  2294. "homepage": "https://nette.org",
  2295. "keywords": [
  2296. "code",
  2297. "nette",
  2298. "php",
  2299. "scaffolding"
  2300. ],
  2301. "time": "2020-02-09T14:39:09+00:00"
  2302. },
  2303. {
  2304. "name": "nette/robot-loader",
  2305. "version": "v3.2.3",
  2306. "source": {
  2307. "type": "git",
  2308. "url": "https://github.com/nette/robot-loader.git",
  2309. "reference": "726c462e73e739e965ec654a667407074cfe83c0"
  2310. },
  2311. "dist": {
  2312. "type": "zip",
  2313. "url": "https://api.github.com/repos/nette/robot-loader/zipball/726c462e73e739e965ec654a667407074cfe83c0",
  2314. "reference": "726c462e73e739e965ec654a667407074cfe83c0",
  2315. "shasum": ""
  2316. },
  2317. "require": {
  2318. "ext-tokenizer": "*",
  2319. "nette/finder": "^2.5 || ^3.0",
  2320. "nette/utils": "^3.0",
  2321. "php": ">=7.1"
  2322. },
  2323. "require-dev": {
  2324. "nette/tester": "^2.0",
  2325. "phpstan/phpstan": "^0.12",
  2326. "tracy/tracy": "^2.3"
  2327. },
  2328. "type": "library",
  2329. "extra": {
  2330. "branch-alias": {
  2331. "dev-master": "3.2-dev"
  2332. }
  2333. },
  2334. "autoload": {
  2335. "classmap": [
  2336. "src/"
  2337. ]
  2338. },
  2339. "notification-url": "https://packagist.org/downloads/",
  2340. "license": [
  2341. "BSD-3-Clause",
  2342. "GPL-2.0-only",
  2343. "GPL-3.0-only"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "David Grudl",
  2348. "homepage": "https://davidgrudl.com"
  2349. },
  2350. {
  2351. "name": "Nette Community",
  2352. "homepage": "https://nette.org/contributors"
  2353. }
  2354. ],
  2355. "description": "🍀 Nette RobotLoader: high performance and comfortable autoloader that will search and autoload classes within your application.",
  2356. "homepage": "https://nette.org",
  2357. "keywords": [
  2358. "autoload",
  2359. "class",
  2360. "interface",
  2361. "nette",
  2362. "trait"
  2363. ],
  2364. "time": "2020-02-28T13:10:07+00:00"
  2365. },
  2366. {
  2367. "name": "nette/schema",
  2368. "version": "v1.0.2",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/nette/schema.git",
  2372. "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/nette/schema/zipball/febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
  2377. "reference": "febf71fb4052c824046f5a33f4f769a6e7fa0cb4",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "nette/utils": "^3.1",
  2382. "php": ">=7.1"
  2383. },
  2384. "require-dev": {
  2385. "nette/tester": "^2.2",
  2386. "phpstan/phpstan-nette": "^0.12",
  2387. "tracy/tracy": "^2.3"
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "branch-alias": []
  2392. },
  2393. "autoload": {
  2394. "classmap": [
  2395. "src/"
  2396. ]
  2397. },
  2398. "notification-url": "https://packagist.org/downloads/",
  2399. "license": [
  2400. "BSD-3-Clause",
  2401. "GPL-2.0",
  2402. "GPL-3.0"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "David Grudl",
  2407. "homepage": "https://davidgrudl.com"
  2408. },
  2409. {
  2410. "name": "Nette Community",
  2411. "homepage": "https://nette.org/contributors"
  2412. }
  2413. ],
  2414. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2415. "homepage": "https://nette.org",
  2416. "keywords": [
  2417. "config",
  2418. "nette"
  2419. ],
  2420. "time": "2020-01-06T22:52:48+00:00"
  2421. },
  2422. {
  2423. "name": "nette/utils",
  2424. "version": "v3.1.1",
  2425. "source": {
  2426. "type": "git",
  2427. "url": "https://github.com/nette/utils.git",
  2428. "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb"
  2429. },
  2430. "dist": {
  2431. "type": "zip",
  2432. "url": "https://api.github.com/repos/nette/utils/zipball/2c17d16d8887579ae1c0898ff94a3668997fd3eb",
  2433. "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb",
  2434. "shasum": ""
  2435. },
  2436. "require": {
  2437. "php": ">=7.1"
  2438. },
  2439. "require-dev": {
  2440. "nette/tester": "~2.0",
  2441. "phpstan/phpstan": "^0.12",
  2442. "tracy/tracy": "^2.3"
  2443. },
  2444. "suggest": {
  2445. "ext-gd": "to use Image",
  2446. "ext-iconv": "to use Strings::webalize() and toAscii()",
  2447. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2448. "ext-json": "to use Nette\\Utils\\Json",
  2449. "ext-mbstring": "to use Strings::lower() etc...",
  2450. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2451. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-master": "3.1-dev"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "classmap": [
  2461. "src/"
  2462. ]
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "BSD-3-Clause",
  2467. "GPL-2.0-only",
  2468. "GPL-3.0-only"
  2469. ],
  2470. "authors": [
  2471. {
  2472. "name": "David Grudl",
  2473. "homepage": "https://davidgrudl.com"
  2474. },
  2475. {
  2476. "name": "Nette Community",
  2477. "homepage": "https://nette.org/contributors"
  2478. }
  2479. ],
  2480. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2481. "homepage": "https://nette.org",
  2482. "keywords": [
  2483. "array",
  2484. "core",
  2485. "datetime",
  2486. "images",
  2487. "json",
  2488. "nette",
  2489. "paginator",
  2490. "password",
  2491. "slugify",
  2492. "string",
  2493. "unicode",
  2494. "utf-8",
  2495. "utility",
  2496. "validation"
  2497. ],
  2498. "time": "2020-02-09T14:10:55+00:00"
  2499. },
  2500. {
  2501. "name": "phar-io/manifest",
  2502. "version": "1.0.3",
  2503. "source": {
  2504. "type": "git",
  2505. "url": "https://github.com/phar-io/manifest.git",
  2506. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  2507. },
  2508. "dist": {
  2509. "type": "zip",
  2510. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2511. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  2512. "shasum": ""
  2513. },
  2514. "require": {
  2515. "ext-dom": "*",
  2516. "ext-phar": "*",
  2517. "phar-io/version": "^2.0",
  2518. "php": "^5.6 || ^7.0"
  2519. },
  2520. "type": "library",
  2521. "extra": {
  2522. "branch-alias": {
  2523. "dev-master": "1.0.x-dev"
  2524. }
  2525. },
  2526. "autoload": {
  2527. "classmap": [
  2528. "src/"
  2529. ]
  2530. },
  2531. "notification-url": "https://packagist.org/downloads/",
  2532. "license": [
  2533. "BSD-3-Clause"
  2534. ],
  2535. "authors": [
  2536. {
  2537. "name": "Arne Blankerts",
  2538. "email": "arne@blankerts.de",
  2539. "role": "Developer"
  2540. },
  2541. {
  2542. "name": "Sebastian Heuer",
  2543. "email": "sebastian@phpeople.de",
  2544. "role": "Developer"
  2545. },
  2546. {
  2547. "name": "Sebastian Bergmann",
  2548. "email": "sebastian@phpunit.de",
  2549. "role": "Developer"
  2550. }
  2551. ],
  2552. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2553. "time": "2018-07-08T19:23:20+00:00"
  2554. },
  2555. {
  2556. "name": "phar-io/version",
  2557. "version": "2.0.1",
  2558. "source": {
  2559. "type": "git",
  2560. "url": "https://github.com/phar-io/version.git",
  2561. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  2562. },
  2563. "dist": {
  2564. "type": "zip",
  2565. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2566. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  2567. "shasum": ""
  2568. },
  2569. "require": {
  2570. "php": "^5.6 || ^7.0"
  2571. },
  2572. "type": "library",
  2573. "autoload": {
  2574. "classmap": [
  2575. "src/"
  2576. ]
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "BSD-3-Clause"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Arne Blankerts",
  2585. "email": "arne@blankerts.de",
  2586. "role": "Developer"
  2587. },
  2588. {
  2589. "name": "Sebastian Heuer",
  2590. "email": "sebastian@phpeople.de",
  2591. "role": "Developer"
  2592. },
  2593. {
  2594. "name": "Sebastian Bergmann",
  2595. "email": "sebastian@phpunit.de",
  2596. "role": "Developer"
  2597. }
  2598. ],
  2599. "description": "Library for handling version information and constraints",
  2600. "time": "2018-07-08T19:19:57+00:00"
  2601. },
  2602. {
  2603. "name": "phpdocumentor/reflection-common",
  2604. "version": "2.1.0",
  2605. "source": {
  2606. "type": "git",
  2607. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2608. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b"
  2609. },
  2610. "dist": {
  2611. "type": "zip",
  2612. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  2613. "reference": "6568f4687e5b41b054365f9ae03fcb1ed5f2069b",
  2614. "shasum": ""
  2615. },
  2616. "require": {
  2617. "php": ">=7.1"
  2618. },
  2619. "type": "library",
  2620. "extra": {
  2621. "branch-alias": {
  2622. "dev-master": "2.x-dev"
  2623. }
  2624. },
  2625. "autoload": {
  2626. "psr-4": {
  2627. "phpDocumentor\\Reflection\\": "src/"
  2628. }
  2629. },
  2630. "notification-url": "https://packagist.org/downloads/",
  2631. "license": [
  2632. "MIT"
  2633. ],
  2634. "authors": [
  2635. {
  2636. "name": "Jaap van Otterdijk",
  2637. "email": "opensource@ijaap.nl"
  2638. }
  2639. ],
  2640. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2641. "homepage": "http://www.phpdoc.org",
  2642. "keywords": [
  2643. "FQSEN",
  2644. "phpDocumentor",
  2645. "phpdoc",
  2646. "reflection",
  2647. "static analysis"
  2648. ],
  2649. "time": "2020-04-27T09:25:28+00:00"
  2650. },
  2651. {
  2652. "name": "phpdocumentor/reflection-docblock",
  2653. "version": "4.3.4",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2657. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  2662. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "php": "^7.0",
  2667. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  2668. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  2669. "webmozart/assert": "^1.0"
  2670. },
  2671. "require-dev": {
  2672. "doctrine/instantiator": "^1.0.5",
  2673. "mockery/mockery": "^1.0",
  2674. "phpdocumentor/type-resolver": "0.4.*",
  2675. "phpunit/phpunit": "^6.4"
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-master": "4.x-dev"
  2681. }
  2682. },
  2683. "autoload": {
  2684. "psr-4": {
  2685. "phpDocumentor\\Reflection\\": [
  2686. "src/"
  2687. ]
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Mike van Riel",
  2697. "email": "me@mikevanriel.com"
  2698. }
  2699. ],
  2700. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2701. "time": "2019-12-28T18:55:12+00:00"
  2702. },
  2703. {
  2704. "name": "phpdocumentor/type-resolver",
  2705. "version": "1.0.1",
  2706. "source": {
  2707. "type": "git",
  2708. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2709. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9"
  2710. },
  2711. "dist": {
  2712. "type": "zip",
  2713. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  2714. "reference": "2e32a6d48972b2c1976ed5d8967145b6cec4a4a9",
  2715. "shasum": ""
  2716. },
  2717. "require": {
  2718. "php": "^7.1",
  2719. "phpdocumentor/reflection-common": "^2.0"
  2720. },
  2721. "require-dev": {
  2722. "ext-tokenizer": "^7.1",
  2723. "mockery/mockery": "~1",
  2724. "phpunit/phpunit": "^7.0"
  2725. },
  2726. "type": "library",
  2727. "extra": {
  2728. "branch-alias": {
  2729. "dev-master": "1.x-dev"
  2730. }
  2731. },
  2732. "autoload": {
  2733. "psr-4": {
  2734. "phpDocumentor\\Reflection\\": "src"
  2735. }
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "Mike van Riel",
  2744. "email": "me@mikevanriel.com"
  2745. }
  2746. ],
  2747. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2748. "time": "2019-08-22T18:11:29+00:00"
  2749. },
  2750. {
  2751. "name": "phpspec/prophecy",
  2752. "version": "v1.10.3",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/phpspec/prophecy.git",
  2756. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  2761. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  2762. "shasum": ""
  2763. },
  2764. "require": {
  2765. "doctrine/instantiator": "^1.0.2",
  2766. "php": "^5.3|^7.0",
  2767. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  2768. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  2769. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  2770. },
  2771. "require-dev": {
  2772. "phpspec/phpspec": "^2.5 || ^3.2",
  2773. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  2774. },
  2775. "type": "library",
  2776. "extra": {
  2777. "branch-alias": {
  2778. "dev-master": "1.10.x-dev"
  2779. }
  2780. },
  2781. "autoload": {
  2782. "psr-4": {
  2783. "Prophecy\\": "src/Prophecy"
  2784. }
  2785. },
  2786. "notification-url": "https://packagist.org/downloads/",
  2787. "license": [
  2788. "MIT"
  2789. ],
  2790. "authors": [
  2791. {
  2792. "name": "Konstantin Kudryashov",
  2793. "email": "ever.zet@gmail.com",
  2794. "homepage": "http://everzet.com"
  2795. },
  2796. {
  2797. "name": "Marcello Duarte",
  2798. "email": "marcello.duarte@gmail.com"
  2799. }
  2800. ],
  2801. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2802. "homepage": "https://github.com/phpspec/prophecy",
  2803. "keywords": [
  2804. "Double",
  2805. "Dummy",
  2806. "fake",
  2807. "mock",
  2808. "spy",
  2809. "stub"
  2810. ],
  2811. "time": "2020-03-05T15:02:03+00:00"
  2812. },
  2813. {
  2814. "name": "phpstan/phpdoc-parser",
  2815. "version": "0.3.5",
  2816. "source": {
  2817. "type": "git",
  2818. "url": "https://github.com/phpstan/phpdoc-parser.git",
  2819. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4"
  2820. },
  2821. "dist": {
  2822. "type": "zip",
  2823. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  2824. "reference": "8c4ef2aefd9788238897b678a985e1d5c8df6db4",
  2825. "shasum": ""
  2826. },
  2827. "require": {
  2828. "php": "~7.1"
  2829. },
  2830. "require-dev": {
  2831. "consistence/coding-standard": "^3.5",
  2832. "jakub-onderka/php-parallel-lint": "^0.9.2",
  2833. "phing/phing": "^2.16.0",
  2834. "phpstan/phpstan": "^0.10",
  2835. "phpunit/phpunit": "^6.3",
  2836. "slevomat/coding-standard": "^4.7.2",
  2837. "squizlabs/php_codesniffer": "^3.3.2",
  2838. "symfony/process": "^3.4 || ^4.0"
  2839. },
  2840. "type": "library",
  2841. "extra": {
  2842. "branch-alias": {
  2843. "dev-master": "0.3-dev"
  2844. }
  2845. },
  2846. "autoload": {
  2847. "psr-4": {
  2848. "PHPStan\\PhpDocParser\\": [
  2849. "src/"
  2850. ]
  2851. }
  2852. },
  2853. "notification-url": "https://packagist.org/downloads/",
  2854. "license": [
  2855. "MIT"
  2856. ],
  2857. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  2858. "time": "2019-06-07T19:13:52+00:00"
  2859. },
  2860. {
  2861. "name": "phpstan/phpstan",
  2862. "version": "0.11.19",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/phpstan/phpstan.git",
  2866. "reference": "63cc502f6957b7f74efbac444b4cf219dcadffd7"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/63cc502f6957b7f74efbac444b4cf219dcadffd7",
  2871. "reference": "63cc502f6957b7f74efbac444b4cf219dcadffd7",
  2872. "shasum": ""
  2873. },
  2874. "require": {
  2875. "composer/xdebug-handler": "^1.3.0",
  2876. "jean85/pretty-package-versions": "^1.0.3",
  2877. "nette/bootstrap": "^2.4 || ^3.0",
  2878. "nette/di": "^2.4.7 || ^3.0",
  2879. "nette/neon": "^2.4.3 || ^3.0",
  2880. "nette/robot-loader": "^3.0.1",
  2881. "nette/schema": "^1.0",
  2882. "nette/utils": "^2.4.5 || ^3.0",
  2883. "nikic/php-parser": "^4.2.3",
  2884. "php": "~7.1",
  2885. "phpstan/phpdoc-parser": "^0.3.5",
  2886. "symfony/console": "~3.2 || ~4.0",
  2887. "symfony/finder": "~3.2 || ~4.0"
  2888. },
  2889. "conflict": {
  2890. "symfony/console": "3.4.16 || 4.1.5"
  2891. },
  2892. "require-dev": {
  2893. "brianium/paratest": "^2.0 || ^3.0",
  2894. "consistence/coding-standard": "^3.5",
  2895. "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4",
  2896. "ext-intl": "*",
  2897. "ext-mysqli": "*",
  2898. "ext-simplexml": "*",
  2899. "ext-soap": "*",
  2900. "ext-zip": "*",
  2901. "jakub-onderka/php-parallel-lint": "^1.0",
  2902. "localheinz/composer-normalize": "^1.1.0",
  2903. "phing/phing": "^2.16.0",
  2904. "phpstan/phpstan-deprecation-rules": "^0.11",
  2905. "phpstan/phpstan-php-parser": "^0.11",
  2906. "phpstan/phpstan-phpunit": "^0.11",
  2907. "phpstan/phpstan-strict-rules": "^0.11",
  2908. "phpunit/phpunit": "^7.5.14 || ^8.0",
  2909. "slevomat/coding-standard": "^4.7.2",
  2910. "squizlabs/php_codesniffer": "^3.3.2"
  2911. },
  2912. "bin": [
  2913. "bin/phpstan"
  2914. ],
  2915. "type": "library",
  2916. "extra": {
  2917. "branch-alias": {
  2918. "dev-master": "0.11-dev"
  2919. }
  2920. },
  2921. "autoload": {
  2922. "psr-4": {
  2923. "PHPStan\\": [
  2924. "src/"
  2925. ]
  2926. }
  2927. },
  2928. "notification-url": "https://packagist.org/downloads/",
  2929. "license": [
  2930. "MIT"
  2931. ],
  2932. "description": "PHPStan - PHP Static Analysis Tool",
  2933. "time": "2019-10-22T20:20:22+00:00"
  2934. },
  2935. {
  2936. "name": "phpunit/php-code-coverage",
  2937. "version": "6.1.4",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2941. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  2946. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "ext-dom": "*",
  2951. "ext-xmlwriter": "*",
  2952. "php": "^7.1",
  2953. "phpunit/php-file-iterator": "^2.0",
  2954. "phpunit/php-text-template": "^1.2.1",
  2955. "phpunit/php-token-stream": "^3.0",
  2956. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  2957. "sebastian/environment": "^3.1 || ^4.0",
  2958. "sebastian/version": "^2.0.1",
  2959. "theseer/tokenizer": "^1.1"
  2960. },
  2961. "require-dev": {
  2962. "phpunit/phpunit": "^7.0"
  2963. },
  2964. "suggest": {
  2965. "ext-xdebug": "^2.6.0"
  2966. },
  2967. "type": "library",
  2968. "extra": {
  2969. "branch-alias": {
  2970. "dev-master": "6.1-dev"
  2971. }
  2972. },
  2973. "autoload": {
  2974. "classmap": [
  2975. "src/"
  2976. ]
  2977. },
  2978. "notification-url": "https://packagist.org/downloads/",
  2979. "license": [
  2980. "BSD-3-Clause"
  2981. ],
  2982. "authors": [
  2983. {
  2984. "name": "Sebastian Bergmann",
  2985. "email": "sebastian@phpunit.de",
  2986. "role": "lead"
  2987. }
  2988. ],
  2989. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2990. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2991. "keywords": [
  2992. "coverage",
  2993. "testing",
  2994. "xunit"
  2995. ],
  2996. "time": "2018-10-31T16:06:48+00:00"
  2997. },
  2998. {
  2999. "name": "phpunit/php-file-iterator",
  3000. "version": "2.0.2",
  3001. "source": {
  3002. "type": "git",
  3003. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3004. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  3005. },
  3006. "dist": {
  3007. "type": "zip",
  3008. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  3009. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  3010. "shasum": ""
  3011. },
  3012. "require": {
  3013. "php": "^7.1"
  3014. },
  3015. "require-dev": {
  3016. "phpunit/phpunit": "^7.1"
  3017. },
  3018. "type": "library",
  3019. "extra": {
  3020. "branch-alias": {
  3021. "dev-master": "2.0.x-dev"
  3022. }
  3023. },
  3024. "autoload": {
  3025. "classmap": [
  3026. "src/"
  3027. ]
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "BSD-3-Clause"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Sebastian Bergmann",
  3036. "email": "sebastian@phpunit.de",
  3037. "role": "lead"
  3038. }
  3039. ],
  3040. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3041. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3042. "keywords": [
  3043. "filesystem",
  3044. "iterator"
  3045. ],
  3046. "time": "2018-09-13T20:33:42+00:00"
  3047. },
  3048. {
  3049. "name": "phpunit/php-text-template",
  3050. "version": "1.2.1",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3054. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3059. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "php": ">=5.3.3"
  3064. },
  3065. "type": "library",
  3066. "autoload": {
  3067. "classmap": [
  3068. "src/"
  3069. ]
  3070. },
  3071. "notification-url": "https://packagist.org/downloads/",
  3072. "license": [
  3073. "BSD-3-Clause"
  3074. ],
  3075. "authors": [
  3076. {
  3077. "name": "Sebastian Bergmann",
  3078. "email": "sebastian@phpunit.de",
  3079. "role": "lead"
  3080. }
  3081. ],
  3082. "description": "Simple template engine.",
  3083. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3084. "keywords": [
  3085. "template"
  3086. ],
  3087. "time": "2015-06-21T13:50:34+00:00"
  3088. },
  3089. {
  3090. "name": "phpunit/php-timer",
  3091. "version": "2.1.2",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3095. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  3100. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": "^7.1"
  3105. },
  3106. "require-dev": {
  3107. "phpunit/phpunit": "^7.0"
  3108. },
  3109. "type": "library",
  3110. "extra": {
  3111. "branch-alias": {
  3112. "dev-master": "2.1-dev"
  3113. }
  3114. },
  3115. "autoload": {
  3116. "classmap": [
  3117. "src/"
  3118. ]
  3119. },
  3120. "notification-url": "https://packagist.org/downloads/",
  3121. "license": [
  3122. "BSD-3-Clause"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Sebastian Bergmann",
  3127. "email": "sebastian@phpunit.de",
  3128. "role": "lead"
  3129. }
  3130. ],
  3131. "description": "Utility class for timing",
  3132. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3133. "keywords": [
  3134. "timer"
  3135. ],
  3136. "time": "2019-06-07T04:22:29+00:00"
  3137. },
  3138. {
  3139. "name": "phpunit/php-token-stream",
  3140. "version": "3.1.1",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  3144. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  3149. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  3150. "shasum": ""
  3151. },
  3152. "require": {
  3153. "ext-tokenizer": "*",
  3154. "php": "^7.1"
  3155. },
  3156. "require-dev": {
  3157. "phpunit/phpunit": "^7.0"
  3158. },
  3159. "type": "library",
  3160. "extra": {
  3161. "branch-alias": {
  3162. "dev-master": "3.1-dev"
  3163. }
  3164. },
  3165. "autoload": {
  3166. "classmap": [
  3167. "src/"
  3168. ]
  3169. },
  3170. "notification-url": "https://packagist.org/downloads/",
  3171. "license": [
  3172. "BSD-3-Clause"
  3173. ],
  3174. "authors": [
  3175. {
  3176. "name": "Sebastian Bergmann",
  3177. "email": "sebastian@phpunit.de"
  3178. }
  3179. ],
  3180. "description": "Wrapper around PHP's tokenizer extension.",
  3181. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  3182. "keywords": [
  3183. "tokenizer"
  3184. ],
  3185. "time": "2019-09-17T06:23:10+00:00"
  3186. },
  3187. {
  3188. "name": "phpunit/phpunit",
  3189. "version": "7.5.20",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3193. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  3198. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  3199. "shasum": ""
  3200. },
  3201. "require": {
  3202. "doctrine/instantiator": "^1.1",
  3203. "ext-dom": "*",
  3204. "ext-json": "*",
  3205. "ext-libxml": "*",
  3206. "ext-mbstring": "*",
  3207. "ext-xml": "*",
  3208. "myclabs/deep-copy": "^1.7",
  3209. "phar-io/manifest": "^1.0.2",
  3210. "phar-io/version": "^2.0",
  3211. "php": "^7.1",
  3212. "phpspec/prophecy": "^1.7",
  3213. "phpunit/php-code-coverage": "^6.0.7",
  3214. "phpunit/php-file-iterator": "^2.0.1",
  3215. "phpunit/php-text-template": "^1.2.1",
  3216. "phpunit/php-timer": "^2.1",
  3217. "sebastian/comparator": "^3.0",
  3218. "sebastian/diff": "^3.0",
  3219. "sebastian/environment": "^4.0",
  3220. "sebastian/exporter": "^3.1",
  3221. "sebastian/global-state": "^2.0",
  3222. "sebastian/object-enumerator": "^3.0.3",
  3223. "sebastian/resource-operations": "^2.0",
  3224. "sebastian/version": "^2.0.1"
  3225. },
  3226. "conflict": {
  3227. "phpunit/phpunit-mock-objects": "*"
  3228. },
  3229. "require-dev": {
  3230. "ext-pdo": "*"
  3231. },
  3232. "suggest": {
  3233. "ext-soap": "*",
  3234. "ext-xdebug": "*",
  3235. "phpunit/php-invoker": "^2.0"
  3236. },
  3237. "bin": [
  3238. "phpunit"
  3239. ],
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "7.5-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "classmap": [
  3248. "src/"
  3249. ]
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "BSD-3-Clause"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Sebastian Bergmann",
  3258. "email": "sebastian@phpunit.de",
  3259. "role": "lead"
  3260. }
  3261. ],
  3262. "description": "The PHP Unit Testing framework.",
  3263. "homepage": "https://phpunit.de/",
  3264. "keywords": [
  3265. "phpunit",
  3266. "testing",
  3267. "xunit"
  3268. ],
  3269. "time": "2020-01-08T08:45:45+00:00"
  3270. },
  3271. {
  3272. "name": "sebastian/code-unit-reverse-lookup",
  3273. "version": "1.0.1",
  3274. "source": {
  3275. "type": "git",
  3276. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3277. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  3278. },
  3279. "dist": {
  3280. "type": "zip",
  3281. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3282. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  3283. "shasum": ""
  3284. },
  3285. "require": {
  3286. "php": "^5.6 || ^7.0"
  3287. },
  3288. "require-dev": {
  3289. "phpunit/phpunit": "^5.7 || ^6.0"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-master": "1.0.x-dev"
  3295. }
  3296. },
  3297. "autoload": {
  3298. "classmap": [
  3299. "src/"
  3300. ]
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "BSD-3-Clause"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "Sebastian Bergmann",
  3309. "email": "sebastian@phpunit.de"
  3310. }
  3311. ],
  3312. "description": "Looks up which function or method a line of code belongs to",
  3313. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3314. "time": "2017-03-04T06:30:41+00:00"
  3315. },
  3316. {
  3317. "name": "sebastian/comparator",
  3318. "version": "3.0.2",
  3319. "source": {
  3320. "type": "git",
  3321. "url": "https://github.com/sebastianbergmann/comparator.git",
  3322. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  3323. },
  3324. "dist": {
  3325. "type": "zip",
  3326. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3327. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  3328. "shasum": ""
  3329. },
  3330. "require": {
  3331. "php": "^7.1",
  3332. "sebastian/diff": "^3.0",
  3333. "sebastian/exporter": "^3.1"
  3334. },
  3335. "require-dev": {
  3336. "phpunit/phpunit": "^7.1"
  3337. },
  3338. "type": "library",
  3339. "extra": {
  3340. "branch-alias": {
  3341. "dev-master": "3.0-dev"
  3342. }
  3343. },
  3344. "autoload": {
  3345. "classmap": [
  3346. "src/"
  3347. ]
  3348. },
  3349. "notification-url": "https://packagist.org/downloads/",
  3350. "license": [
  3351. "BSD-3-Clause"
  3352. ],
  3353. "authors": [
  3354. {
  3355. "name": "Jeff Welch",
  3356. "email": "whatthejeff@gmail.com"
  3357. },
  3358. {
  3359. "name": "Volker Dusch",
  3360. "email": "github@wallbash.com"
  3361. },
  3362. {
  3363. "name": "Bernhard Schussek",
  3364. "email": "bschussek@2bepublished.at"
  3365. },
  3366. {
  3367. "name": "Sebastian Bergmann",
  3368. "email": "sebastian@phpunit.de"
  3369. }
  3370. ],
  3371. "description": "Provides the functionality to compare PHP values for equality",
  3372. "homepage": "https://github.com/sebastianbergmann/comparator",
  3373. "keywords": [
  3374. "comparator",
  3375. "compare",
  3376. "equality"
  3377. ],
  3378. "time": "2018-07-12T15:12:46+00:00"
  3379. },
  3380. {
  3381. "name": "sebastian/diff",
  3382. "version": "3.0.2",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/sebastianbergmann/diff.git",
  3386. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3391. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "php": "^7.1"
  3396. },
  3397. "require-dev": {
  3398. "phpunit/phpunit": "^7.5 || ^8.0",
  3399. "symfony/process": "^2 || ^3.3 || ^4"
  3400. },
  3401. "type": "library",
  3402. "extra": {
  3403. "branch-alias": {
  3404. "dev-master": "3.0-dev"
  3405. }
  3406. },
  3407. "autoload": {
  3408. "classmap": [
  3409. "src/"
  3410. ]
  3411. },
  3412. "notification-url": "https://packagist.org/downloads/",
  3413. "license": [
  3414. "BSD-3-Clause"
  3415. ],
  3416. "authors": [
  3417. {
  3418. "name": "Kore Nordmann",
  3419. "email": "mail@kore-nordmann.de"
  3420. },
  3421. {
  3422. "name": "Sebastian Bergmann",
  3423. "email": "sebastian@phpunit.de"
  3424. }
  3425. ],
  3426. "description": "Diff implementation",
  3427. "homepage": "https://github.com/sebastianbergmann/diff",
  3428. "keywords": [
  3429. "diff",
  3430. "udiff",
  3431. "unidiff",
  3432. "unified diff"
  3433. ],
  3434. "time": "2019-02-04T06:01:07+00:00"
  3435. },
  3436. {
  3437. "name": "sebastian/environment",
  3438. "version": "4.2.3",
  3439. "source": {
  3440. "type": "git",
  3441. "url": "https://github.com/sebastianbergmann/environment.git",
  3442. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  3443. },
  3444. "dist": {
  3445. "type": "zip",
  3446. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3447. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  3448. "shasum": ""
  3449. },
  3450. "require": {
  3451. "php": "^7.1"
  3452. },
  3453. "require-dev": {
  3454. "phpunit/phpunit": "^7.5"
  3455. },
  3456. "suggest": {
  3457. "ext-posix": "*"
  3458. },
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "4.2-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "classmap": [
  3467. "src/"
  3468. ]
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "BSD-3-Clause"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "Sebastian Bergmann",
  3477. "email": "sebastian@phpunit.de"
  3478. }
  3479. ],
  3480. "description": "Provides functionality to handle HHVM/PHP environments",
  3481. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3482. "keywords": [
  3483. "Xdebug",
  3484. "environment",
  3485. "hhvm"
  3486. ],
  3487. "time": "2019-11-20T08:46:58+00:00"
  3488. },
  3489. {
  3490. "name": "sebastian/exporter",
  3491. "version": "3.1.2",
  3492. "source": {
  3493. "type": "git",
  3494. "url": "https://github.com/sebastianbergmann/exporter.git",
  3495. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  3496. },
  3497. "dist": {
  3498. "type": "zip",
  3499. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  3500. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  3501. "shasum": ""
  3502. },
  3503. "require": {
  3504. "php": "^7.0",
  3505. "sebastian/recursion-context": "^3.0"
  3506. },
  3507. "require-dev": {
  3508. "ext-mbstring": "*",
  3509. "phpunit/phpunit": "^6.0"
  3510. },
  3511. "type": "library",
  3512. "extra": {
  3513. "branch-alias": {
  3514. "dev-master": "3.1.x-dev"
  3515. }
  3516. },
  3517. "autoload": {
  3518. "classmap": [
  3519. "src/"
  3520. ]
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "BSD-3-Clause"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Sebastian Bergmann",
  3529. "email": "sebastian@phpunit.de"
  3530. },
  3531. {
  3532. "name": "Jeff Welch",
  3533. "email": "whatthejeff@gmail.com"
  3534. },
  3535. {
  3536. "name": "Volker Dusch",
  3537. "email": "github@wallbash.com"
  3538. },
  3539. {
  3540. "name": "Adam Harvey",
  3541. "email": "aharvey@php.net"
  3542. },
  3543. {
  3544. "name": "Bernhard Schussek",
  3545. "email": "bschussek@gmail.com"
  3546. }
  3547. ],
  3548. "description": "Provides the functionality to export PHP variables for visualization",
  3549. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  3550. "keywords": [
  3551. "export",
  3552. "exporter"
  3553. ],
  3554. "time": "2019-09-14T09:02:43+00:00"
  3555. },
  3556. {
  3557. "name": "sebastian/global-state",
  3558. "version": "2.0.0",
  3559. "source": {
  3560. "type": "git",
  3561. "url": "https://github.com/sebastianbergmann/global-state.git",
  3562. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  3563. },
  3564. "dist": {
  3565. "type": "zip",
  3566. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3567. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  3568. "shasum": ""
  3569. },
  3570. "require": {
  3571. "php": "^7.0"
  3572. },
  3573. "require-dev": {
  3574. "phpunit/phpunit": "^6.0"
  3575. },
  3576. "suggest": {
  3577. "ext-uopz": "*"
  3578. },
  3579. "type": "library",
  3580. "extra": {
  3581. "branch-alias": {
  3582. "dev-master": "2.0-dev"
  3583. }
  3584. },
  3585. "autoload": {
  3586. "classmap": [
  3587. "src/"
  3588. ]
  3589. },
  3590. "notification-url": "https://packagist.org/downloads/",
  3591. "license": [
  3592. "BSD-3-Clause"
  3593. ],
  3594. "authors": [
  3595. {
  3596. "name": "Sebastian Bergmann",
  3597. "email": "sebastian@phpunit.de"
  3598. }
  3599. ],
  3600. "description": "Snapshotting of global state",
  3601. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3602. "keywords": [
  3603. "global state"
  3604. ],
  3605. "time": "2017-04-27T15:39:26+00:00"
  3606. },
  3607. {
  3608. "name": "sebastian/object-enumerator",
  3609. "version": "3.0.3",
  3610. "source": {
  3611. "type": "git",
  3612. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3613. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  3614. },
  3615. "dist": {
  3616. "type": "zip",
  3617. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3618. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  3619. "shasum": ""
  3620. },
  3621. "require": {
  3622. "php": "^7.0",
  3623. "sebastian/object-reflector": "^1.1.1",
  3624. "sebastian/recursion-context": "^3.0"
  3625. },
  3626. "require-dev": {
  3627. "phpunit/phpunit": "^6.0"
  3628. },
  3629. "type": "library",
  3630. "extra": {
  3631. "branch-alias": {
  3632. "dev-master": "3.0.x-dev"
  3633. }
  3634. },
  3635. "autoload": {
  3636. "classmap": [
  3637. "src/"
  3638. ]
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "BSD-3-Clause"
  3643. ],
  3644. "authors": [
  3645. {
  3646. "name": "Sebastian Bergmann",
  3647. "email": "sebastian@phpunit.de"
  3648. }
  3649. ],
  3650. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3651. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3652. "time": "2017-08-03T12:35:26+00:00"
  3653. },
  3654. {
  3655. "name": "sebastian/object-reflector",
  3656. "version": "1.1.1",
  3657. "source": {
  3658. "type": "git",
  3659. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3660. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  3661. },
  3662. "dist": {
  3663. "type": "zip",
  3664. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  3665. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  3666. "shasum": ""
  3667. },
  3668. "require": {
  3669. "php": "^7.0"
  3670. },
  3671. "require-dev": {
  3672. "phpunit/phpunit": "^6.0"
  3673. },
  3674. "type": "library",
  3675. "extra": {
  3676. "branch-alias": {
  3677. "dev-master": "1.1-dev"
  3678. }
  3679. },
  3680. "autoload": {
  3681. "classmap": [
  3682. "src/"
  3683. ]
  3684. },
  3685. "notification-url": "https://packagist.org/downloads/",
  3686. "license": [
  3687. "BSD-3-Clause"
  3688. ],
  3689. "authors": [
  3690. {
  3691. "name": "Sebastian Bergmann",
  3692. "email": "sebastian@phpunit.de"
  3693. }
  3694. ],
  3695. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3696. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3697. "time": "2017-03-29T09:07:27+00:00"
  3698. },
  3699. {
  3700. "name": "sebastian/recursion-context",
  3701. "version": "3.0.0",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3705. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3710. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": "^7.0"
  3715. },
  3716. "require-dev": {
  3717. "phpunit/phpunit": "^6.0"
  3718. },
  3719. "type": "library",
  3720. "extra": {
  3721. "branch-alias": {
  3722. "dev-master": "3.0.x-dev"
  3723. }
  3724. },
  3725. "autoload": {
  3726. "classmap": [
  3727. "src/"
  3728. ]
  3729. },
  3730. "notification-url": "https://packagist.org/downloads/",
  3731. "license": [
  3732. "BSD-3-Clause"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Jeff Welch",
  3737. "email": "whatthejeff@gmail.com"
  3738. },
  3739. {
  3740. "name": "Sebastian Bergmann",
  3741. "email": "sebastian@phpunit.de"
  3742. },
  3743. {
  3744. "name": "Adam Harvey",
  3745. "email": "aharvey@php.net"
  3746. }
  3747. ],
  3748. "description": "Provides functionality to recursively process PHP variables",
  3749. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3750. "time": "2017-03-03T06:23:57+00:00"
  3751. },
  3752. {
  3753. "name": "sebastian/resource-operations",
  3754. "version": "2.0.1",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3758. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  3763. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  3764. "shasum": ""
  3765. },
  3766. "require": {
  3767. "php": "^7.1"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-master": "2.0-dev"
  3773. }
  3774. },
  3775. "autoload": {
  3776. "classmap": [
  3777. "src/"
  3778. ]
  3779. },
  3780. "notification-url": "https://packagist.org/downloads/",
  3781. "license": [
  3782. "BSD-3-Clause"
  3783. ],
  3784. "authors": [
  3785. {
  3786. "name": "Sebastian Bergmann",
  3787. "email": "sebastian@phpunit.de"
  3788. }
  3789. ],
  3790. "description": "Provides a list of PHP built-in functions that operate on resources",
  3791. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3792. "time": "2018-10-04T04:07:39+00:00"
  3793. },
  3794. {
  3795. "name": "sebastian/version",
  3796. "version": "2.0.1",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/sebastianbergmann/version.git",
  3800. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  3805. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": ">=5.6"
  3810. },
  3811. "type": "library",
  3812. "extra": {
  3813. "branch-alias": {
  3814. "dev-master": "2.0.x-dev"
  3815. }
  3816. },
  3817. "autoload": {
  3818. "classmap": [
  3819. "src/"
  3820. ]
  3821. },
  3822. "notification-url": "https://packagist.org/downloads/",
  3823. "license": [
  3824. "BSD-3-Clause"
  3825. ],
  3826. "authors": [
  3827. {
  3828. "name": "Sebastian Bergmann",
  3829. "email": "sebastian@phpunit.de",
  3830. "role": "lead"
  3831. }
  3832. ],
  3833. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3834. "homepage": "https://github.com/sebastianbergmann/version",
  3835. "time": "2016-10-03T07:35:21+00:00"
  3836. },
  3837. {
  3838. "name": "symfony/console",
  3839. "version": "v4.4.8",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/symfony/console.git",
  3843. "reference": "10bb3ee3c97308869d53b3e3d03f6ac23ff985f7"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/symfony/console/zipball/10bb3ee3c97308869d53b3e3d03f6ac23ff985f7",
  3848. "reference": "10bb3ee3c97308869d53b3e3d03f6ac23ff985f7",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "php": "^7.1.3",
  3853. "symfony/polyfill-mbstring": "~1.0",
  3854. "symfony/polyfill-php73": "^1.8",
  3855. "symfony/service-contracts": "^1.1|^2"
  3856. },
  3857. "conflict": {
  3858. "symfony/dependency-injection": "<3.4",
  3859. "symfony/event-dispatcher": "<4.3|>=5",
  3860. "symfony/lock": "<4.4",
  3861. "symfony/process": "<3.3"
  3862. },
  3863. "provide": {
  3864. "psr/log-implementation": "1.0"
  3865. },
  3866. "require-dev": {
  3867. "psr/log": "~1.0",
  3868. "symfony/config": "^3.4|^4.0|^5.0",
  3869. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3870. "symfony/event-dispatcher": "^4.3",
  3871. "symfony/lock": "^4.4|^5.0",
  3872. "symfony/process": "^3.4|^4.0|^5.0",
  3873. "symfony/var-dumper": "^4.3|^5.0"
  3874. },
  3875. "suggest": {
  3876. "psr/log": "For using the console logger",
  3877. "symfony/event-dispatcher": "",
  3878. "symfony/lock": "",
  3879. "symfony/process": ""
  3880. },
  3881. "type": "library",
  3882. "extra": {
  3883. "branch-alias": {
  3884. "dev-master": "4.4-dev"
  3885. }
  3886. },
  3887. "autoload": {
  3888. "psr-4": {
  3889. "Symfony\\Component\\Console\\": ""
  3890. },
  3891. "exclude-from-classmap": [
  3892. "/Tests/"
  3893. ]
  3894. },
  3895. "notification-url": "https://packagist.org/downloads/",
  3896. "license": [
  3897. "MIT"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "Fabien Potencier",
  3902. "email": "fabien@symfony.com"
  3903. },
  3904. {
  3905. "name": "Symfony Community",
  3906. "homepage": "https://symfony.com/contributors"
  3907. }
  3908. ],
  3909. "description": "Symfony Console Component",
  3910. "homepage": "https://symfony.com",
  3911. "funding": [
  3912. {
  3913. "url": "https://symfony.com/sponsor",
  3914. "type": "custom"
  3915. },
  3916. {
  3917. "url": "https://github.com/fabpot",
  3918. "type": "github"
  3919. },
  3920. {
  3921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3922. "type": "tidelift"
  3923. }
  3924. ],
  3925. "time": "2020-03-30T11:41:10+00:00"
  3926. },
  3927. {
  3928. "name": "symfony/finder",
  3929. "version": "v4.4.8",
  3930. "source": {
  3931. "type": "git",
  3932. "url": "https://github.com/symfony/finder.git",
  3933. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  3934. },
  3935. "dist": {
  3936. "type": "zip",
  3937. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  3938. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  3939. "shasum": ""
  3940. },
  3941. "require": {
  3942. "php": "^7.1.3"
  3943. },
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-master": "4.4-dev"
  3948. }
  3949. },
  3950. "autoload": {
  3951. "psr-4": {
  3952. "Symfony\\Component\\Finder\\": ""
  3953. },
  3954. "exclude-from-classmap": [
  3955. "/Tests/"
  3956. ]
  3957. },
  3958. "notification-url": "https://packagist.org/downloads/",
  3959. "license": [
  3960. "MIT"
  3961. ],
  3962. "authors": [
  3963. {
  3964. "name": "Fabien Potencier",
  3965. "email": "fabien@symfony.com"
  3966. },
  3967. {
  3968. "name": "Symfony Community",
  3969. "homepage": "https://symfony.com/contributors"
  3970. }
  3971. ],
  3972. "description": "Symfony Finder Component",
  3973. "homepage": "https://symfony.com",
  3974. "funding": [
  3975. {
  3976. "url": "https://symfony.com/sponsor",
  3977. "type": "custom"
  3978. },
  3979. {
  3980. "url": "https://github.com/fabpot",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2020-03-27T16:54:36+00:00"
  3989. },
  3990. {
  3991. "name": "symfony/polyfill-ctype",
  3992. "version": "v1.16.0",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/symfony/polyfill-ctype.git",
  3996. "reference": "1aab00e39cebaef4d8652497f46c15c1b7e45294"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1aab00e39cebaef4d8652497f46c15c1b7e45294",
  4001. "reference": "1aab00e39cebaef4d8652497f46c15c1b7e45294",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "php": ">=5.3.3"
  4006. },
  4007. "suggest": {
  4008. "ext-ctype": "For best performance"
  4009. },
  4010. "type": "library",
  4011. "extra": {
  4012. "branch-alias": {
  4013. "dev-master": "1.16-dev"
  4014. }
  4015. },
  4016. "autoload": {
  4017. "psr-4": {
  4018. "Symfony\\Polyfill\\Ctype\\": ""
  4019. },
  4020. "files": [
  4021. "bootstrap.php"
  4022. ]
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Gert de Pagter",
  4031. "email": "BackEndTea@gmail.com"
  4032. },
  4033. {
  4034. "name": "Symfony Community",
  4035. "homepage": "https://symfony.com/contributors"
  4036. }
  4037. ],
  4038. "description": "Symfony polyfill for ctype functions",
  4039. "homepage": "https://symfony.com",
  4040. "keywords": [
  4041. "compatibility",
  4042. "ctype",
  4043. "polyfill",
  4044. "portable"
  4045. ],
  4046. "funding": [
  4047. {
  4048. "url": "https://symfony.com/sponsor",
  4049. "type": "custom"
  4050. },
  4051. {
  4052. "url": "https://github.com/fabpot",
  4053. "type": "github"
  4054. },
  4055. {
  4056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4057. "type": "tidelift"
  4058. }
  4059. ],
  4060. "time": "2020-05-08T16:50:20+00:00"
  4061. },
  4062. {
  4063. "name": "symfony/polyfill-php73",
  4064. "version": "v1.16.0",
  4065. "source": {
  4066. "type": "git",
  4067. "url": "https://github.com/symfony/polyfill-php73.git",
  4068. "reference": "7e95fe59d12169fcf4041487e4bf34fca37ee0ed"
  4069. },
  4070. "dist": {
  4071. "type": "zip",
  4072. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/7e95fe59d12169fcf4041487e4bf34fca37ee0ed",
  4073. "reference": "7e95fe59d12169fcf4041487e4bf34fca37ee0ed",
  4074. "shasum": ""
  4075. },
  4076. "require": {
  4077. "php": ">=5.3.3"
  4078. },
  4079. "type": "library",
  4080. "extra": {
  4081. "branch-alias": {
  4082. "dev-master": "1.16-dev"
  4083. }
  4084. },
  4085. "autoload": {
  4086. "psr-4": {
  4087. "Symfony\\Polyfill\\Php73\\": ""
  4088. },
  4089. "files": [
  4090. "bootstrap.php"
  4091. ],
  4092. "classmap": [
  4093. "Resources/stubs"
  4094. ]
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Nicolas Grekas",
  4103. "email": "p@tchwork.com"
  4104. },
  4105. {
  4106. "name": "Symfony Community",
  4107. "homepage": "https://symfony.com/contributors"
  4108. }
  4109. ],
  4110. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4111. "homepage": "https://symfony.com",
  4112. "keywords": [
  4113. "compatibility",
  4114. "polyfill",
  4115. "portable",
  4116. "shim"
  4117. ],
  4118. "funding": [
  4119. {
  4120. "url": "https://symfony.com/sponsor",
  4121. "type": "custom"
  4122. },
  4123. {
  4124. "url": "https://github.com/fabpot",
  4125. "type": "github"
  4126. },
  4127. {
  4128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4129. "type": "tidelift"
  4130. }
  4131. ],
  4132. "time": "2020-05-02T14:56:09+00:00"
  4133. },
  4134. {
  4135. "name": "symfony/var-dumper",
  4136. "version": "v4.4.8",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://github.com/symfony/var-dumper.git",
  4140. "reference": "c587e04ce5d1aa62d534a038f574d9a709e814cf"
  4141. },
  4142. "dist": {
  4143. "type": "zip",
  4144. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c587e04ce5d1aa62d534a038f574d9a709e814cf",
  4145. "reference": "c587e04ce5d1aa62d534a038f574d9a709e814cf",
  4146. "shasum": ""
  4147. },
  4148. "require": {
  4149. "php": "^7.1.3",
  4150. "symfony/polyfill-mbstring": "~1.0",
  4151. "symfony/polyfill-php72": "~1.5"
  4152. },
  4153. "conflict": {
  4154. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4155. "symfony/console": "<3.4"
  4156. },
  4157. "require-dev": {
  4158. "ext-iconv": "*",
  4159. "symfony/console": "^3.4|^4.0|^5.0",
  4160. "symfony/process": "^4.4|^5.0",
  4161. "twig/twig": "^1.34|^2.4|^3.0"
  4162. },
  4163. "suggest": {
  4164. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4165. "ext-intl": "To show region name in time zone dump",
  4166. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4167. },
  4168. "bin": [
  4169. "Resources/bin/var-dump-server"
  4170. ],
  4171. "type": "library",
  4172. "extra": {
  4173. "branch-alias": {
  4174. "dev-master": "4.4-dev"
  4175. }
  4176. },
  4177. "autoload": {
  4178. "files": [
  4179. "Resources/functions/dump.php"
  4180. ],
  4181. "psr-4": {
  4182. "Symfony\\Component\\VarDumper\\": ""
  4183. },
  4184. "exclude-from-classmap": [
  4185. "/Tests/"
  4186. ]
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "MIT"
  4191. ],
  4192. "authors": [
  4193. {
  4194. "name": "Nicolas Grekas",
  4195. "email": "p@tchwork.com"
  4196. },
  4197. {
  4198. "name": "Symfony Community",
  4199. "homepage": "https://symfony.com/contributors"
  4200. }
  4201. ],
  4202. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4203. "homepage": "https://symfony.com",
  4204. "keywords": [
  4205. "debug",
  4206. "dump"
  4207. ],
  4208. "funding": [
  4209. {
  4210. "url": "https://symfony.com/sponsor",
  4211. "type": "custom"
  4212. },
  4213. {
  4214. "url": "https://github.com/fabpot",
  4215. "type": "github"
  4216. },
  4217. {
  4218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4219. "type": "tidelift"
  4220. }
  4221. ],
  4222. "time": "2020-04-12T16:14:02+00:00"
  4223. },
  4224. {
  4225. "name": "theseer/tokenizer",
  4226. "version": "1.1.3",
  4227. "source": {
  4228. "type": "git",
  4229. "url": "https://github.com/theseer/tokenizer.git",
  4230. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  4231. },
  4232. "dist": {
  4233. "type": "zip",
  4234. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  4235. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  4236. "shasum": ""
  4237. },
  4238. "require": {
  4239. "ext-dom": "*",
  4240. "ext-tokenizer": "*",
  4241. "ext-xmlwriter": "*",
  4242. "php": "^7.0"
  4243. },
  4244. "type": "library",
  4245. "autoload": {
  4246. "classmap": [
  4247. "src/"
  4248. ]
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "BSD-3-Clause"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Arne Blankerts",
  4257. "email": "arne@blankerts.de",
  4258. "role": "Developer"
  4259. }
  4260. ],
  4261. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4262. "time": "2019-06-13T22:48:21+00:00"
  4263. },
  4264. {
  4265. "name": "webmozart/assert",
  4266. "version": "1.8.0",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/webmozart/assert.git",
  4270. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/webmozart/assert/zipball/ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  4275. "reference": "ab2cb0b3b559010b75981b1bdce728da3ee90ad6",
  4276. "shasum": ""
  4277. },
  4278. "require": {
  4279. "php": "^5.3.3 || ^7.0",
  4280. "symfony/polyfill-ctype": "^1.8"
  4281. },
  4282. "conflict": {
  4283. "vimeo/psalm": "<3.9.1"
  4284. },
  4285. "require-dev": {
  4286. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  4287. },
  4288. "type": "library",
  4289. "autoload": {
  4290. "psr-4": {
  4291. "Webmozart\\Assert\\": "src/"
  4292. }
  4293. },
  4294. "notification-url": "https://packagist.org/downloads/",
  4295. "license": [
  4296. "MIT"
  4297. ],
  4298. "authors": [
  4299. {
  4300. "name": "Bernhard Schussek",
  4301. "email": "bschussek@gmail.com"
  4302. }
  4303. ],
  4304. "description": "Assertions to validate method input/output with nice error messages.",
  4305. "keywords": [
  4306. "assert",
  4307. "check",
  4308. "validate"
  4309. ],
  4310. "time": "2020-04-18T12:12:48+00:00"
  4311. }
  4312. ],
  4313. "aliases": [],
  4314. "minimum-stability": "stable",
  4315. "stability-flags": [],
  4316. "prefer-stable": false,
  4317. "prefer-lowest": false,
  4318. "platform": {
  4319. "php": "^7.1.3"
  4320. },
  4321. "platform-dev": [],
  4322. "platform-overrides": {
  4323. "php": "7.1.3"
  4324. },
  4325. "plugin-api-version": "1.1.0"
  4326. }