composer.lock 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495
  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": "7810fda463efbc54c4225a00665e0a99",
  8. "packages": [],
  9. "packages-dev": [
  10. {
  11. "name": "amphp/amp",
  12. "version": "v2.5.0",
  13. "source": {
  14. "type": "git",
  15. "url": "https://github.com/amphp/amp.git",
  16. "reference": "f220a51458bf4dd0dedebb171ac3457813c72bbc"
  17. },
  18. "dist": {
  19. "type": "zip",
  20. "url": "https://api.github.com/repos/amphp/amp/zipball/f220a51458bf4dd0dedebb171ac3457813c72bbc",
  21. "reference": "f220a51458bf4dd0dedebb171ac3457813c72bbc",
  22. "shasum": ""
  23. },
  24. "require": {
  25. "php": ">=7"
  26. },
  27. "require-dev": {
  28. "amphp/php-cs-fixer-config": "dev-master",
  29. "amphp/phpunit-util": "^1",
  30. "ext-json": "*",
  31. "jetbrains/phpstorm-stubs": "^2019.3",
  32. "phpunit/phpunit": "^6.0.9 | ^7",
  33. "psalm/phar": "^3.11@dev",
  34. "react/promise": "^2"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.x-dev"
  40. }
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Amp\\": "lib"
  45. },
  46. "files": [
  47. "lib/functions.php",
  48. "lib/Internal/functions.php"
  49. ]
  50. },
  51. "notification-url": "https://packagist.org/downloads/",
  52. "license": [
  53. "MIT"
  54. ],
  55. "authors": [
  56. {
  57. "name": "Daniel Lowrey",
  58. "email": "rdlowrey@php.net"
  59. },
  60. {
  61. "name": "Aaron Piotrowski",
  62. "email": "aaron@trowski.com"
  63. },
  64. {
  65. "name": "Bob Weinand",
  66. "email": "bobwei9@hotmail.com"
  67. },
  68. {
  69. "name": "Niklas Keller",
  70. "email": "me@kelunik.com"
  71. }
  72. ],
  73. "description": "A non-blocking concurrency framework for PHP applications.",
  74. "homepage": "http://amphp.org/amp",
  75. "keywords": [
  76. "async",
  77. "asynchronous",
  78. "awaitable",
  79. "concurrency",
  80. "event",
  81. "event-loop",
  82. "future",
  83. "non-blocking",
  84. "promise"
  85. ],
  86. "funding": [
  87. {
  88. "url": "https://github.com/amphp",
  89. "type": "github"
  90. }
  91. ],
  92. "time": "2020-07-14T21:47:18+00:00"
  93. },
  94. {
  95. "name": "amphp/byte-stream",
  96. "version": "v1.8.0",
  97. "source": {
  98. "type": "git",
  99. "url": "https://github.com/amphp/byte-stream.git",
  100. "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088"
  101. },
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
  105. "reference": "f0c20cf598a958ba2aa8c6e5a71c697d652c7088",
  106. "shasum": ""
  107. },
  108. "require": {
  109. "amphp/amp": "^2",
  110. "php": ">=7.1"
  111. },
  112. "require-dev": {
  113. "amphp/php-cs-fixer-config": "dev-master",
  114. "amphp/phpunit-util": "^1.4",
  115. "friendsofphp/php-cs-fixer": "^2.3",
  116. "jetbrains/phpstorm-stubs": "^2019.3",
  117. "phpunit/phpunit": "^6 || ^7 || ^8",
  118. "psalm/phar": "^3.11.4"
  119. },
  120. "type": "library",
  121. "extra": {
  122. "branch-alias": {
  123. "dev-master": "1.x-dev"
  124. }
  125. },
  126. "autoload": {
  127. "psr-4": {
  128. "Amp\\ByteStream\\": "lib"
  129. },
  130. "files": [
  131. "lib/functions.php"
  132. ]
  133. },
  134. "notification-url": "https://packagist.org/downloads/",
  135. "license": [
  136. "MIT"
  137. ],
  138. "authors": [
  139. {
  140. "name": "Aaron Piotrowski",
  141. "email": "aaron@trowski.com"
  142. },
  143. {
  144. "name": "Niklas Keller",
  145. "email": "me@kelunik.com"
  146. }
  147. ],
  148. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  149. "homepage": "http://amphp.org/byte-stream",
  150. "keywords": [
  151. "amp",
  152. "amphp",
  153. "async",
  154. "io",
  155. "non-blocking",
  156. "stream"
  157. ],
  158. "time": "2020-06-29T18:35:05+00:00"
  159. },
  160. {
  161. "name": "composer/package-versions-deprecated",
  162. "version": "1.11.99",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/composer/package-versions-deprecated.git",
  166. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  171. "reference": "c8c9aa8a14cc3d3bec86d0a8c3fa52ea79936855",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "composer-plugin-api": "^1.1.0 || ^2.0",
  176. "php": "^7 || ^8"
  177. },
  178. "replace": {
  179. "ocramius/package-versions": "1.11.99"
  180. },
  181. "require-dev": {
  182. "composer/composer": "^1.9.3 || ^2.0@dev",
  183. "ext-zip": "^1.13",
  184. "phpunit/phpunit": "^6.5 || ^7"
  185. },
  186. "type": "composer-plugin",
  187. "extra": {
  188. "class": "PackageVersions\\Installer",
  189. "branch-alias": {
  190. "dev-master": "1.x-dev"
  191. }
  192. },
  193. "autoload": {
  194. "psr-4": {
  195. "PackageVersions\\": "src/PackageVersions"
  196. }
  197. },
  198. "notification-url": "https://packagist.org/downloads/",
  199. "license": [
  200. "MIT"
  201. ],
  202. "authors": [
  203. {
  204. "name": "Marco Pivetta",
  205. "email": "ocramius@gmail.com"
  206. },
  207. {
  208. "name": "Jordi Boggiano",
  209. "email": "j.boggiano@seld.be"
  210. }
  211. ],
  212. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  213. "funding": [
  214. {
  215. "url": "https://packagist.com",
  216. "type": "custom"
  217. },
  218. {
  219. "url": "https://github.com/composer",
  220. "type": "github"
  221. },
  222. {
  223. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  224. "type": "tidelift"
  225. }
  226. ],
  227. "time": "2020-08-25T05:50:16+00:00"
  228. },
  229. {
  230. "name": "composer/semver",
  231. "version": "3.0.0",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/composer/semver.git",
  235. "reference": "3426bd5efa8a12d230824536c42a8a4ad30b7940"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/composer/semver/zipball/3426bd5efa8a12d230824536c42a8a4ad30b7940",
  240. "reference": "3426bd5efa8a12d230824536c42a8a4ad30b7940",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "php": "^5.3.2 || ^7.0 || ^8.0"
  245. },
  246. "require-dev": {
  247. "phpstan/phpstan": "^0.12.19",
  248. "symfony/phpunit-bridge": "^4.2 || ^5"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-master": "3.x-dev"
  254. }
  255. },
  256. "autoload": {
  257. "psr-4": {
  258. "Composer\\Semver\\": "src"
  259. }
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Nils Adermann",
  268. "email": "naderman@naderman.de",
  269. "homepage": "http://www.naderman.de"
  270. },
  271. {
  272. "name": "Jordi Boggiano",
  273. "email": "j.boggiano@seld.be",
  274. "homepage": "http://seld.be"
  275. },
  276. {
  277. "name": "Rob Bast",
  278. "email": "rob.bast@gmail.com",
  279. "homepage": "http://robbast.nl"
  280. }
  281. ],
  282. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  283. "keywords": [
  284. "semantic",
  285. "semver",
  286. "validation",
  287. "versioning"
  288. ],
  289. "funding": [
  290. {
  291. "url": "https://packagist.com",
  292. "type": "custom"
  293. },
  294. {
  295. "url": "https://github.com/composer",
  296. "type": "github"
  297. },
  298. {
  299. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  300. "type": "tidelift"
  301. }
  302. ],
  303. "time": "2020-05-26T18:22:04+00:00"
  304. },
  305. {
  306. "name": "composer/xdebug-handler",
  307. "version": "1.4.3",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/composer/xdebug-handler.git",
  311. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ebd27a9866ae8254e873866f795491f02418c5a5",
  316. "reference": "ebd27a9866ae8254e873866f795491f02418c5a5",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^5.3.2 || ^7.0 || ^8.0",
  321. "psr/log": "^1.0"
  322. },
  323. "require-dev": {
  324. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Composer\\XdebugHandler\\": "src"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "MIT"
  335. ],
  336. "authors": [
  337. {
  338. "name": "John Stevenson",
  339. "email": "john-stevenson@blueyonder.co.uk"
  340. }
  341. ],
  342. "description": "Restarts a process without Xdebug.",
  343. "keywords": [
  344. "Xdebug",
  345. "performance"
  346. ],
  347. "funding": [
  348. {
  349. "url": "https://packagist.com",
  350. "type": "custom"
  351. },
  352. {
  353. "url": "https://github.com/composer",
  354. "type": "github"
  355. },
  356. {
  357. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  358. "type": "tidelift"
  359. }
  360. ],
  361. "time": "2020-08-19T10:27:58+00:00"
  362. },
  363. {
  364. "name": "doctrine/instantiator",
  365. "version": "1.3.1",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/doctrine/instantiator.git",
  369. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
  374. "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "php": "^7.1 || ^8.0"
  379. },
  380. "require-dev": {
  381. "doctrine/coding-standard": "^6.0",
  382. "ext-pdo": "*",
  383. "ext-phar": "*",
  384. "phpbench/phpbench": "^0.13",
  385. "phpstan/phpstan-phpunit": "^0.11",
  386. "phpstan/phpstan-shim": "^0.11",
  387. "phpunit/phpunit": "^7.0"
  388. },
  389. "type": "library",
  390. "extra": {
  391. "branch-alias": {
  392. "dev-master": "1.2.x-dev"
  393. }
  394. },
  395. "autoload": {
  396. "psr-4": {
  397. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  398. }
  399. },
  400. "notification-url": "https://packagist.org/downloads/",
  401. "license": [
  402. "MIT"
  403. ],
  404. "authors": [
  405. {
  406. "name": "Marco Pivetta",
  407. "email": "ocramius@gmail.com",
  408. "homepage": "http://ocramius.github.com/"
  409. }
  410. ],
  411. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  412. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  413. "keywords": [
  414. "constructor",
  415. "instantiate"
  416. ],
  417. "funding": [
  418. {
  419. "url": "https://www.doctrine-project.org/sponsorship.html",
  420. "type": "custom"
  421. },
  422. {
  423. "url": "https://www.patreon.com/phpdoctrine",
  424. "type": "patreon"
  425. },
  426. {
  427. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  428. "type": "tidelift"
  429. }
  430. ],
  431. "time": "2020-05-29T17:27:14+00:00"
  432. },
  433. {
  434. "name": "felixfbecker/advanced-json-rpc",
  435. "version": "v3.1.1",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
  439. "reference": "0ed363f8de17d284d479ec813c9ad3f6834b5c40"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/0ed363f8de17d284d479ec813c9ad3f6834b5c40",
  444. "reference": "0ed363f8de17d284d479ec813c9ad3f6834b5c40",
  445. "shasum": ""
  446. },
  447. "require": {
  448. "netresearch/jsonmapper": "^1.0 || ^2.0",
  449. "php": ">=7.0",
  450. "phpdocumentor/reflection-docblock": "^4.0.0 || ^5.0.0"
  451. },
  452. "require-dev": {
  453. "phpunit/phpunit": "^6.0.0"
  454. },
  455. "type": "library",
  456. "autoload": {
  457. "psr-4": {
  458. "AdvancedJsonRpc\\": "lib/"
  459. }
  460. },
  461. "notification-url": "https://packagist.org/downloads/",
  462. "license": [
  463. "ISC"
  464. ],
  465. "authors": [
  466. {
  467. "name": "Felix Becker",
  468. "email": "felix.b@outlook.com"
  469. }
  470. ],
  471. "description": "A more advanced JSONRPC implementation",
  472. "time": "2020-03-11T15:21:41+00:00"
  473. },
  474. {
  475. "name": "felixfbecker/language-server-protocol",
  476. "version": "v1.4.0",
  477. "source": {
  478. "type": "git",
  479. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  480. "reference": "378801f6139bb74ac215d81cca1272af61df9a9f"
  481. },
  482. "dist": {
  483. "type": "zip",
  484. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/378801f6139bb74ac215d81cca1272af61df9a9f",
  485. "reference": "378801f6139bb74ac215d81cca1272af61df9a9f",
  486. "shasum": ""
  487. },
  488. "require": {
  489. "php": "^7.0"
  490. },
  491. "require-dev": {
  492. "phpstan/phpstan": "*",
  493. "phpunit/phpunit": "^6.3",
  494. "squizlabs/php_codesniffer": "^3.1"
  495. },
  496. "type": "library",
  497. "autoload": {
  498. "psr-4": {
  499. "LanguageServerProtocol\\": "src/"
  500. }
  501. },
  502. "notification-url": "https://packagist.org/downloads/",
  503. "license": [
  504. "ISC"
  505. ],
  506. "authors": [
  507. {
  508. "name": "Felix Becker",
  509. "email": "felix.b@outlook.com"
  510. }
  511. ],
  512. "description": "PHP classes for the Language Server Protocol",
  513. "keywords": [
  514. "language",
  515. "microsoft",
  516. "php",
  517. "server"
  518. ],
  519. "time": "2019-06-23T21:03:50+00:00"
  520. },
  521. {
  522. "name": "myclabs/deep-copy",
  523. "version": "1.10.1",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/myclabs/DeepCopy.git",
  527. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  532. "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
  533. "shasum": ""
  534. },
  535. "require": {
  536. "php": "^7.1 || ^8.0"
  537. },
  538. "replace": {
  539. "myclabs/deep-copy": "self.version"
  540. },
  541. "require-dev": {
  542. "doctrine/collections": "^1.0",
  543. "doctrine/common": "^2.6",
  544. "phpunit/phpunit": "^7.1"
  545. },
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "DeepCopy\\": "src/DeepCopy/"
  550. },
  551. "files": [
  552. "src/DeepCopy/deep_copy.php"
  553. ]
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "description": "Create deep copies (clones) of your objects",
  560. "keywords": [
  561. "clone",
  562. "copy",
  563. "duplicate",
  564. "object",
  565. "object graph"
  566. ],
  567. "funding": [
  568. {
  569. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  570. "type": "tidelift"
  571. }
  572. ],
  573. "time": "2020-06-29T13:22:24+00:00"
  574. },
  575. {
  576. "name": "netresearch/jsonmapper",
  577. "version": "v2.1.0",
  578. "source": {
  579. "type": "git",
  580. "url": "https://github.com/cweiske/jsonmapper.git",
  581. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e"
  582. },
  583. "dist": {
  584. "type": "zip",
  585. "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  586. "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e",
  587. "shasum": ""
  588. },
  589. "require": {
  590. "ext-json": "*",
  591. "ext-pcre": "*",
  592. "ext-reflection": "*",
  593. "ext-spl": "*",
  594. "php": ">=5.6"
  595. },
  596. "require-dev": {
  597. "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0",
  598. "squizlabs/php_codesniffer": "~3.5"
  599. },
  600. "type": "library",
  601. "autoload": {
  602. "psr-0": {
  603. "JsonMapper": "src/"
  604. }
  605. },
  606. "notification-url": "https://packagist.org/downloads/",
  607. "license": [
  608. "OSL-3.0"
  609. ],
  610. "authors": [
  611. {
  612. "name": "Christian Weiske",
  613. "email": "cweiske@cweiske.de",
  614. "homepage": "http://github.com/cweiske/jsonmapper/",
  615. "role": "Developer"
  616. }
  617. ],
  618. "description": "Map nested JSON structures onto PHP classes",
  619. "time": "2020-04-16T18:48:43+00:00"
  620. },
  621. {
  622. "name": "nikic/php-parser",
  623. "version": "v4.9.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/nikic/PHP-Parser.git",
  627. "reference": "aaee038b912e567780949787d5fe1977be11a778"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/aaee038b912e567780949787d5fe1977be11a778",
  632. "reference": "aaee038b912e567780949787d5fe1977be11a778",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "ext-tokenizer": "*",
  637. "php": ">=7.0"
  638. },
  639. "require-dev": {
  640. "ircmaxell/php-yacc": "^0.0.7",
  641. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  642. },
  643. "bin": [
  644. "bin/php-parse"
  645. ],
  646. "type": "library",
  647. "extra": {
  648. "branch-alias": {
  649. "dev-master": "4.9-dev"
  650. }
  651. },
  652. "autoload": {
  653. "psr-4": {
  654. "PhpParser\\": "lib/PhpParser"
  655. }
  656. },
  657. "notification-url": "https://packagist.org/downloads/",
  658. "license": [
  659. "BSD-3-Clause"
  660. ],
  661. "authors": [
  662. {
  663. "name": "Nikita Popov"
  664. }
  665. ],
  666. "description": "A PHP parser written in PHP",
  667. "keywords": [
  668. "parser",
  669. "php"
  670. ],
  671. "time": "2020-08-18T19:48:01+00:00"
  672. },
  673. {
  674. "name": "openlss/lib-array2xml",
  675. "version": "1.0.0",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/nullivex/lib-array2xml.git",
  679. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  684. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "php": ">=5.3.2"
  689. },
  690. "type": "library",
  691. "autoload": {
  692. "psr-0": {
  693. "LSS": ""
  694. }
  695. },
  696. "notification-url": "https://packagist.org/downloads/",
  697. "license": [
  698. "Apache-2.0"
  699. ],
  700. "authors": [
  701. {
  702. "name": "Bryan Tong",
  703. "email": "bryan@nullivex.com",
  704. "homepage": "https://www.nullivex.com"
  705. },
  706. {
  707. "name": "Tony Butler",
  708. "email": "spudz76@gmail.com",
  709. "homepage": "https://www.nullivex.com"
  710. }
  711. ],
  712. "description": "Array2XML conversion library credit to lalit.org",
  713. "homepage": "https://www.nullivex.com",
  714. "keywords": [
  715. "array",
  716. "array conversion",
  717. "xml",
  718. "xml conversion"
  719. ],
  720. "time": "2019-03-29T20:06:56+00:00"
  721. },
  722. {
  723. "name": "phar-io/manifest",
  724. "version": "2.0.1",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/phar-io/manifest.git",
  728. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  733. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "ext-dom": "*",
  738. "ext-phar": "*",
  739. "ext-xmlwriter": "*",
  740. "phar-io/version": "^3.0.1",
  741. "php": "^7.2 || ^8.0"
  742. },
  743. "type": "library",
  744. "extra": {
  745. "branch-alias": {
  746. "dev-master": "2.0.x-dev"
  747. }
  748. },
  749. "autoload": {
  750. "classmap": [
  751. "src/"
  752. ]
  753. },
  754. "notification-url": "https://packagist.org/downloads/",
  755. "license": [
  756. "BSD-3-Clause"
  757. ],
  758. "authors": [
  759. {
  760. "name": "Arne Blankerts",
  761. "email": "arne@blankerts.de",
  762. "role": "Developer"
  763. },
  764. {
  765. "name": "Sebastian Heuer",
  766. "email": "sebastian@phpeople.de",
  767. "role": "Developer"
  768. },
  769. {
  770. "name": "Sebastian Bergmann",
  771. "email": "sebastian@phpunit.de",
  772. "role": "Developer"
  773. }
  774. ],
  775. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  776. "time": "2020-06-27T14:33:11+00:00"
  777. },
  778. {
  779. "name": "phar-io/version",
  780. "version": "3.0.2",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/phar-io/version.git",
  784. "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/phar-io/version/zipball/c6bb6825def89e0a32220f88337f8ceaf1975fa0",
  789. "reference": "c6bb6825def89e0a32220f88337f8ceaf1975fa0",
  790. "shasum": ""
  791. },
  792. "require": {
  793. "php": "^7.2 || ^8.0"
  794. },
  795. "type": "library",
  796. "autoload": {
  797. "classmap": [
  798. "src/"
  799. ]
  800. },
  801. "notification-url": "https://packagist.org/downloads/",
  802. "license": [
  803. "BSD-3-Clause"
  804. ],
  805. "authors": [
  806. {
  807. "name": "Arne Blankerts",
  808. "email": "arne@blankerts.de",
  809. "role": "Developer"
  810. },
  811. {
  812. "name": "Sebastian Heuer",
  813. "email": "sebastian@phpeople.de",
  814. "role": "Developer"
  815. },
  816. {
  817. "name": "Sebastian Bergmann",
  818. "email": "sebastian@phpunit.de",
  819. "role": "Developer"
  820. }
  821. ],
  822. "description": "Library for handling version information and constraints",
  823. "time": "2020-06-27T14:39:04+00:00"
  824. },
  825. {
  826. "name": "phpdocumentor/reflection-common",
  827. "version": "2.2.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  831. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  836. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "php": "^7.2 || ^8.0"
  841. },
  842. "type": "library",
  843. "extra": {
  844. "branch-alias": {
  845. "dev-2.x": "2.x-dev"
  846. }
  847. },
  848. "autoload": {
  849. "psr-4": {
  850. "phpDocumentor\\Reflection\\": "src/"
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "authors": [
  858. {
  859. "name": "Jaap van Otterdijk",
  860. "email": "opensource@ijaap.nl"
  861. }
  862. ],
  863. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  864. "homepage": "http://www.phpdoc.org",
  865. "keywords": [
  866. "FQSEN",
  867. "phpDocumentor",
  868. "phpdoc",
  869. "reflection",
  870. "static analysis"
  871. ],
  872. "time": "2020-06-27T09:03:43+00:00"
  873. },
  874. {
  875. "name": "phpdocumentor/reflection-docblock",
  876. "version": "5.2.1",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  880. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44",
  885. "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44",
  886. "shasum": ""
  887. },
  888. "require": {
  889. "ext-filter": "*",
  890. "php": "^7.2 || ^8.0",
  891. "phpdocumentor/reflection-common": "^2.2",
  892. "phpdocumentor/type-resolver": "^1.3",
  893. "webmozart/assert": "^1.9.1"
  894. },
  895. "require-dev": {
  896. "mockery/mockery": "~1.3.2"
  897. },
  898. "type": "library",
  899. "extra": {
  900. "branch-alias": {
  901. "dev-master": "5.x-dev"
  902. }
  903. },
  904. "autoload": {
  905. "psr-4": {
  906. "phpDocumentor\\Reflection\\": "src"
  907. }
  908. },
  909. "notification-url": "https://packagist.org/downloads/",
  910. "license": [
  911. "MIT"
  912. ],
  913. "authors": [
  914. {
  915. "name": "Mike van Riel",
  916. "email": "me@mikevanriel.com"
  917. },
  918. {
  919. "name": "Jaap van Otterdijk",
  920. "email": "account@ijaap.nl"
  921. }
  922. ],
  923. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  924. "time": "2020-08-15T11:14:08+00:00"
  925. },
  926. {
  927. "name": "phpdocumentor/type-resolver",
  928. "version": "1.3.0",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  932. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651",
  937. "reference": "e878a14a65245fbe78f8080eba03b47c3b705651",
  938. "shasum": ""
  939. },
  940. "require": {
  941. "php": "^7.2 || ^8.0",
  942. "phpdocumentor/reflection-common": "^2.0"
  943. },
  944. "require-dev": {
  945. "ext-tokenizer": "*"
  946. },
  947. "type": "library",
  948. "extra": {
  949. "branch-alias": {
  950. "dev-1.x": "1.x-dev"
  951. }
  952. },
  953. "autoload": {
  954. "psr-4": {
  955. "phpDocumentor\\Reflection\\": "src"
  956. }
  957. },
  958. "notification-url": "https://packagist.org/downloads/",
  959. "license": [
  960. "MIT"
  961. ],
  962. "authors": [
  963. {
  964. "name": "Mike van Riel",
  965. "email": "me@mikevanriel.com"
  966. }
  967. ],
  968. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  969. "time": "2020-06-27T10:12:23+00:00"
  970. },
  971. {
  972. "name": "phpspec/prophecy",
  973. "version": "1.11.1",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/phpspec/prophecy.git",
  977. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160",
  982. "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "doctrine/instantiator": "^1.2",
  987. "php": "^7.2",
  988. "phpdocumentor/reflection-docblock": "^5.0",
  989. "sebastian/comparator": "^3.0 || ^4.0",
  990. "sebastian/recursion-context": "^3.0 || ^4.0"
  991. },
  992. "require-dev": {
  993. "phpspec/phpspec": "^6.0",
  994. "phpunit/phpunit": "^8.0"
  995. },
  996. "type": "library",
  997. "extra": {
  998. "branch-alias": {
  999. "dev-master": "1.11.x-dev"
  1000. }
  1001. },
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Prophecy\\": "src/Prophecy"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Konstantin Kudryashov",
  1014. "email": "ever.zet@gmail.com",
  1015. "homepage": "http://everzet.com"
  1016. },
  1017. {
  1018. "name": "Marcello Duarte",
  1019. "email": "marcello.duarte@gmail.com"
  1020. }
  1021. ],
  1022. "description": "Highly opinionated mocking framework for PHP 5.3+",
  1023. "homepage": "https://github.com/phpspec/prophecy",
  1024. "keywords": [
  1025. "Double",
  1026. "Dummy",
  1027. "fake",
  1028. "mock",
  1029. "spy",
  1030. "stub"
  1031. ],
  1032. "time": "2020-07-08T12:44:21+00:00"
  1033. },
  1034. {
  1035. "name": "phpunit/php-code-coverage",
  1036. "version": "9.1.4",
  1037. "source": {
  1038. "type": "git",
  1039. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  1040. "reference": "4422fca28c3634e2de8c7c373af97a104dd1a45f"
  1041. },
  1042. "dist": {
  1043. "type": "zip",
  1044. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4422fca28c3634e2de8c7c373af97a104dd1a45f",
  1045. "reference": "4422fca28c3634e2de8c7c373af97a104dd1a45f",
  1046. "shasum": ""
  1047. },
  1048. "require": {
  1049. "ext-dom": "*",
  1050. "ext-libxml": "*",
  1051. "ext-xmlwriter": "*",
  1052. "nikic/php-parser": "^4.8",
  1053. "php": "^7.3 || ^8.0",
  1054. "phpunit/php-file-iterator": "^3.0.3",
  1055. "phpunit/php-text-template": "^2.0.2",
  1056. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  1057. "sebastian/complexity": "^2.0",
  1058. "sebastian/environment": "^5.1.2",
  1059. "sebastian/lines-of-code": "^1.0",
  1060. "sebastian/version": "^3.0.1",
  1061. "theseer/tokenizer": "^1.2.0"
  1062. },
  1063. "require-dev": {
  1064. "phpunit/phpunit": "^9.3"
  1065. },
  1066. "suggest": {
  1067. "ext-pcov": "*",
  1068. "ext-xdebug": "*"
  1069. },
  1070. "type": "library",
  1071. "extra": {
  1072. "branch-alias": {
  1073. "dev-master": "9.1-dev"
  1074. }
  1075. },
  1076. "autoload": {
  1077. "classmap": [
  1078. "src/"
  1079. ]
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "BSD-3-Clause"
  1084. ],
  1085. "authors": [
  1086. {
  1087. "name": "Sebastian Bergmann",
  1088. "email": "sebastian@phpunit.de",
  1089. "role": "lead"
  1090. }
  1091. ],
  1092. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  1093. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  1094. "keywords": [
  1095. "coverage",
  1096. "testing",
  1097. "xunit"
  1098. ],
  1099. "funding": [
  1100. {
  1101. "url": "https://github.com/sebastianbergmann",
  1102. "type": "github"
  1103. }
  1104. ],
  1105. "time": "2020-08-13T15:04:53+00:00"
  1106. },
  1107. {
  1108. "name": "phpunit/php-file-iterator",
  1109. "version": "3.0.4",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  1113. "reference": "25fefc5b19835ca653877fe081644a3f8c1d915e"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/25fefc5b19835ca653877fe081644a3f8c1d915e",
  1118. "reference": "25fefc5b19835ca653877fe081644a3f8c1d915e",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "php": "^7.3 || ^8.0"
  1123. },
  1124. "require-dev": {
  1125. "phpunit/phpunit": "^9.0"
  1126. },
  1127. "type": "library",
  1128. "extra": {
  1129. "branch-alias": {
  1130. "dev-master": "3.0-dev"
  1131. }
  1132. },
  1133. "autoload": {
  1134. "classmap": [
  1135. "src/"
  1136. ]
  1137. },
  1138. "notification-url": "https://packagist.org/downloads/",
  1139. "license": [
  1140. "BSD-3-Clause"
  1141. ],
  1142. "authors": [
  1143. {
  1144. "name": "Sebastian Bergmann",
  1145. "email": "sebastian@phpunit.de",
  1146. "role": "lead"
  1147. }
  1148. ],
  1149. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1150. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1151. "keywords": [
  1152. "filesystem",
  1153. "iterator"
  1154. ],
  1155. "funding": [
  1156. {
  1157. "url": "https://github.com/sebastianbergmann",
  1158. "type": "github"
  1159. }
  1160. ],
  1161. "time": "2020-07-11T05:18:21+00:00"
  1162. },
  1163. {
  1164. "name": "phpunit/php-invoker",
  1165. "version": "3.1.0",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  1169. "reference": "7a85b66acc48cacffdf87dadd3694e7123674298"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/7a85b66acc48cacffdf87dadd3694e7123674298",
  1174. "reference": "7a85b66acc48cacffdf87dadd3694e7123674298",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "php": "^7.3 || ^8.0"
  1179. },
  1180. "require-dev": {
  1181. "ext-pcntl": "*",
  1182. "phpunit/phpunit": "^9.0"
  1183. },
  1184. "suggest": {
  1185. "ext-pcntl": "*"
  1186. },
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "3.1-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "classmap": [
  1195. "src/"
  1196. ]
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "BSD-3-Clause"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Sebastian Bergmann",
  1205. "email": "sebastian@phpunit.de",
  1206. "role": "lead"
  1207. }
  1208. ],
  1209. "description": "Invoke callables with a timeout",
  1210. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  1211. "keywords": [
  1212. "process"
  1213. ],
  1214. "funding": [
  1215. {
  1216. "url": "https://github.com/sebastianbergmann",
  1217. "type": "github"
  1218. }
  1219. ],
  1220. "time": "2020-08-06T07:04:15+00:00"
  1221. },
  1222. {
  1223. "name": "phpunit/php-text-template",
  1224. "version": "2.0.2",
  1225. "source": {
  1226. "type": "git",
  1227. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1228. "reference": "6ff9c8ea4d3212b88fcf74e25e516e2c51c99324"
  1229. },
  1230. "dist": {
  1231. "type": "zip",
  1232. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/6ff9c8ea4d3212b88fcf74e25e516e2c51c99324",
  1233. "reference": "6ff9c8ea4d3212b88fcf74e25e516e2c51c99324",
  1234. "shasum": ""
  1235. },
  1236. "require": {
  1237. "php": "^7.3 || ^8.0"
  1238. },
  1239. "require-dev": {
  1240. "phpunit/phpunit": "^9.0"
  1241. },
  1242. "type": "library",
  1243. "extra": {
  1244. "branch-alias": {
  1245. "dev-master": "2.0-dev"
  1246. }
  1247. },
  1248. "autoload": {
  1249. "classmap": [
  1250. "src/"
  1251. ]
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "BSD-3-Clause"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Sebastian Bergmann",
  1260. "email": "sebastian@phpunit.de",
  1261. "role": "lead"
  1262. }
  1263. ],
  1264. "description": "Simple template engine.",
  1265. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1266. "keywords": [
  1267. "template"
  1268. ],
  1269. "funding": [
  1270. {
  1271. "url": "https://github.com/sebastianbergmann",
  1272. "type": "github"
  1273. }
  1274. ],
  1275. "time": "2020-06-26T11:55:37+00:00"
  1276. },
  1277. {
  1278. "name": "phpunit/php-timer",
  1279. "version": "5.0.1",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1283. "reference": "cc49734779cbb302bf51a44297dab8c4bbf941e7"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/cc49734779cbb302bf51a44297dab8c4bbf941e7",
  1288. "reference": "cc49734779cbb302bf51a44297dab8c4bbf941e7",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "php": "^7.3 || ^8.0"
  1293. },
  1294. "require-dev": {
  1295. "phpunit/phpunit": "^9.2"
  1296. },
  1297. "type": "library",
  1298. "extra": {
  1299. "branch-alias": {
  1300. "dev-master": "5.0-dev"
  1301. }
  1302. },
  1303. "autoload": {
  1304. "classmap": [
  1305. "src/"
  1306. ]
  1307. },
  1308. "notification-url": "https://packagist.org/downloads/",
  1309. "license": [
  1310. "BSD-3-Clause"
  1311. ],
  1312. "authors": [
  1313. {
  1314. "name": "Sebastian Bergmann",
  1315. "email": "sebastian@phpunit.de",
  1316. "role": "lead"
  1317. }
  1318. ],
  1319. "description": "Utility class for timing",
  1320. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1321. "keywords": [
  1322. "timer"
  1323. ],
  1324. "funding": [
  1325. {
  1326. "url": "https://github.com/sebastianbergmann",
  1327. "type": "github"
  1328. }
  1329. ],
  1330. "time": "2020-06-26T11:58:13+00:00"
  1331. },
  1332. {
  1333. "name": "phpunit/phpunit",
  1334. "version": "9.3.7",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1338. "reference": "c638a0cac77347980352485912de48c99b42ad00"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c638a0cac77347980352485912de48c99b42ad00",
  1343. "reference": "c638a0cac77347980352485912de48c99b42ad00",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "doctrine/instantiator": "^1.3.1",
  1348. "ext-dom": "*",
  1349. "ext-json": "*",
  1350. "ext-libxml": "*",
  1351. "ext-mbstring": "*",
  1352. "ext-xml": "*",
  1353. "ext-xmlwriter": "*",
  1354. "myclabs/deep-copy": "^1.10.1",
  1355. "phar-io/manifest": "^2.0.1",
  1356. "phar-io/version": "^3.0.2",
  1357. "php": "^7.3 || ^8.0",
  1358. "phpspec/prophecy": "^1.11.1",
  1359. "phpunit/php-code-coverage": "^9.1.1",
  1360. "phpunit/php-file-iterator": "^3.0.4",
  1361. "phpunit/php-invoker": "^3.1",
  1362. "phpunit/php-text-template": "^2.0.2",
  1363. "phpunit/php-timer": "^5.0.1",
  1364. "sebastian/code-unit": "^1.0.5",
  1365. "sebastian/comparator": "^4.0.3",
  1366. "sebastian/diff": "^4.0.2",
  1367. "sebastian/environment": "^5.1.2",
  1368. "sebastian/exporter": "^4.0.2",
  1369. "sebastian/global-state": "^5.0",
  1370. "sebastian/object-enumerator": "^4.0.2",
  1371. "sebastian/resource-operations": "^3.0.2",
  1372. "sebastian/type": "^2.2.1",
  1373. "sebastian/version": "^3.0.1"
  1374. },
  1375. "require-dev": {
  1376. "ext-pdo": "*",
  1377. "phpspec/prophecy-phpunit": "^2.0.1"
  1378. },
  1379. "suggest": {
  1380. "ext-soap": "*",
  1381. "ext-xdebug": "*"
  1382. },
  1383. "bin": [
  1384. "phpunit"
  1385. ],
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "9.3-dev"
  1390. }
  1391. },
  1392. "autoload": {
  1393. "classmap": [
  1394. "src/"
  1395. ],
  1396. "files": [
  1397. "src/Framework/Assert/Functions.php"
  1398. ]
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "BSD-3-Clause"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "Sebastian Bergmann",
  1407. "email": "sebastian@phpunit.de",
  1408. "role": "lead"
  1409. }
  1410. ],
  1411. "description": "The PHP Unit Testing framework.",
  1412. "homepage": "https://phpunit.de/",
  1413. "keywords": [
  1414. "phpunit",
  1415. "testing",
  1416. "xunit"
  1417. ],
  1418. "funding": [
  1419. {
  1420. "url": "https://phpunit.de/donate.html",
  1421. "type": "custom"
  1422. },
  1423. {
  1424. "url": "https://github.com/sebastianbergmann",
  1425. "type": "github"
  1426. }
  1427. ],
  1428. "time": "2020-08-11T15:36:12+00:00"
  1429. },
  1430. {
  1431. "name": "psr/container",
  1432. "version": "1.0.0",
  1433. "source": {
  1434. "type": "git",
  1435. "url": "https://github.com/php-fig/container.git",
  1436. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1437. },
  1438. "dist": {
  1439. "type": "zip",
  1440. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1441. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1442. "shasum": ""
  1443. },
  1444. "require": {
  1445. "php": ">=5.3.0"
  1446. },
  1447. "type": "library",
  1448. "extra": {
  1449. "branch-alias": {
  1450. "dev-master": "1.0.x-dev"
  1451. }
  1452. },
  1453. "autoload": {
  1454. "psr-4": {
  1455. "Psr\\Container\\": "src/"
  1456. }
  1457. },
  1458. "notification-url": "https://packagist.org/downloads/",
  1459. "license": [
  1460. "MIT"
  1461. ],
  1462. "authors": [
  1463. {
  1464. "name": "PHP-FIG",
  1465. "homepage": "http://www.php-fig.org/"
  1466. }
  1467. ],
  1468. "description": "Common Container Interface (PHP FIG PSR-11)",
  1469. "homepage": "https://github.com/php-fig/container",
  1470. "keywords": [
  1471. "PSR-11",
  1472. "container",
  1473. "container-interface",
  1474. "container-interop",
  1475. "psr"
  1476. ],
  1477. "time": "2017-02-14T16:28:37+00:00"
  1478. },
  1479. {
  1480. "name": "psr/log",
  1481. "version": "1.1.3",
  1482. "source": {
  1483. "type": "git",
  1484. "url": "https://github.com/php-fig/log.git",
  1485. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1486. },
  1487. "dist": {
  1488. "type": "zip",
  1489. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1490. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1491. "shasum": ""
  1492. },
  1493. "require": {
  1494. "php": ">=5.3.0"
  1495. },
  1496. "type": "library",
  1497. "extra": {
  1498. "branch-alias": {
  1499. "dev-master": "1.1.x-dev"
  1500. }
  1501. },
  1502. "autoload": {
  1503. "psr-4": {
  1504. "Psr\\Log\\": "Psr/Log/"
  1505. }
  1506. },
  1507. "notification-url": "https://packagist.org/downloads/",
  1508. "license": [
  1509. "MIT"
  1510. ],
  1511. "authors": [
  1512. {
  1513. "name": "PHP-FIG",
  1514. "homepage": "http://www.php-fig.org/"
  1515. }
  1516. ],
  1517. "description": "Common interface for logging libraries",
  1518. "homepage": "https://github.com/php-fig/log",
  1519. "keywords": [
  1520. "log",
  1521. "psr",
  1522. "psr-3"
  1523. ],
  1524. "time": "2020-03-23T09:12:05+00:00"
  1525. },
  1526. {
  1527. "name": "sebastian/code-unit",
  1528. "version": "1.0.5",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/sebastianbergmann/code-unit.git",
  1532. "reference": "c1e2df332c905079980b119c4db103117e5e5c90"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/c1e2df332c905079980b119c4db103117e5e5c90",
  1537. "reference": "c1e2df332c905079980b119c4db103117e5e5c90",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "php": "^7.3 || ^8.0"
  1542. },
  1543. "require-dev": {
  1544. "phpunit/phpunit": "^9.0"
  1545. },
  1546. "type": "library",
  1547. "extra": {
  1548. "branch-alias": {
  1549. "dev-master": "1.0-dev"
  1550. }
  1551. },
  1552. "autoload": {
  1553. "classmap": [
  1554. "src/"
  1555. ]
  1556. },
  1557. "notification-url": "https://packagist.org/downloads/",
  1558. "license": [
  1559. "BSD-3-Clause"
  1560. ],
  1561. "authors": [
  1562. {
  1563. "name": "Sebastian Bergmann",
  1564. "email": "sebastian@phpunit.de",
  1565. "role": "lead"
  1566. }
  1567. ],
  1568. "description": "Collection of value objects that represent the PHP code units",
  1569. "homepage": "https://github.com/sebastianbergmann/code-unit",
  1570. "funding": [
  1571. {
  1572. "url": "https://github.com/sebastianbergmann",
  1573. "type": "github"
  1574. }
  1575. ],
  1576. "time": "2020-06-26T12:50:45+00:00"
  1577. },
  1578. {
  1579. "name": "sebastian/code-unit-reverse-lookup",
  1580. "version": "2.0.2",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  1584. "reference": "ee51f9bb0c6d8a43337055db3120829fa14da819"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ee51f9bb0c6d8a43337055db3120829fa14da819",
  1589. "reference": "ee51f9bb0c6d8a43337055db3120829fa14da819",
  1590. "shasum": ""
  1591. },
  1592. "require": {
  1593. "php": "^7.3 || ^8.0"
  1594. },
  1595. "require-dev": {
  1596. "phpunit/phpunit": "^9.0"
  1597. },
  1598. "type": "library",
  1599. "extra": {
  1600. "branch-alias": {
  1601. "dev-master": "2.0-dev"
  1602. }
  1603. },
  1604. "autoload": {
  1605. "classmap": [
  1606. "src/"
  1607. ]
  1608. },
  1609. "notification-url": "https://packagist.org/downloads/",
  1610. "license": [
  1611. "BSD-3-Clause"
  1612. ],
  1613. "authors": [
  1614. {
  1615. "name": "Sebastian Bergmann",
  1616. "email": "sebastian@phpunit.de"
  1617. }
  1618. ],
  1619. "description": "Looks up which function or method a line of code belongs to",
  1620. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  1621. "funding": [
  1622. {
  1623. "url": "https://github.com/sebastianbergmann",
  1624. "type": "github"
  1625. }
  1626. ],
  1627. "time": "2020-06-26T12:04:00+00:00"
  1628. },
  1629. {
  1630. "name": "sebastian/comparator",
  1631. "version": "4.0.3",
  1632. "source": {
  1633. "type": "git",
  1634. "url": "https://github.com/sebastianbergmann/comparator.git",
  1635. "reference": "dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f"
  1636. },
  1637. "dist": {
  1638. "type": "zip",
  1639. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f",
  1640. "reference": "dcc580eadfaa4e7f9d2cf9ae1922134ea962e14f",
  1641. "shasum": ""
  1642. },
  1643. "require": {
  1644. "php": "^7.3 || ^8.0",
  1645. "sebastian/diff": "^4.0",
  1646. "sebastian/exporter": "^4.0"
  1647. },
  1648. "require-dev": {
  1649. "phpunit/phpunit": "^9.0"
  1650. },
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-master": "4.0-dev"
  1655. }
  1656. },
  1657. "autoload": {
  1658. "classmap": [
  1659. "src/"
  1660. ]
  1661. },
  1662. "notification-url": "https://packagist.org/downloads/",
  1663. "license": [
  1664. "BSD-3-Clause"
  1665. ],
  1666. "authors": [
  1667. {
  1668. "name": "Sebastian Bergmann",
  1669. "email": "sebastian@phpunit.de"
  1670. },
  1671. {
  1672. "name": "Jeff Welch",
  1673. "email": "whatthejeff@gmail.com"
  1674. },
  1675. {
  1676. "name": "Volker Dusch",
  1677. "email": "github@wallbash.com"
  1678. },
  1679. {
  1680. "name": "Bernhard Schussek",
  1681. "email": "bschussek@2bepublished.at"
  1682. }
  1683. ],
  1684. "description": "Provides the functionality to compare PHP values for equality",
  1685. "homepage": "https://github.com/sebastianbergmann/comparator",
  1686. "keywords": [
  1687. "comparator",
  1688. "compare",
  1689. "equality"
  1690. ],
  1691. "funding": [
  1692. {
  1693. "url": "https://github.com/sebastianbergmann",
  1694. "type": "github"
  1695. }
  1696. ],
  1697. "time": "2020-06-26T12:05:46+00:00"
  1698. },
  1699. {
  1700. "name": "sebastian/complexity",
  1701. "version": "2.0.0",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/sebastianbergmann/complexity.git",
  1705. "reference": "33fcd6a26656c6546f70871244ecba4b4dced097"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/33fcd6a26656c6546f70871244ecba4b4dced097",
  1710. "reference": "33fcd6a26656c6546f70871244ecba4b4dced097",
  1711. "shasum": ""
  1712. },
  1713. "require": {
  1714. "nikic/php-parser": "^4.7",
  1715. "php": "^7.3 || ^8.0"
  1716. },
  1717. "require-dev": {
  1718. "phpunit/phpunit": "^9.2"
  1719. },
  1720. "type": "library",
  1721. "extra": {
  1722. "branch-alias": {
  1723. "dev-master": "2.0-dev"
  1724. }
  1725. },
  1726. "autoload": {
  1727. "classmap": [
  1728. "src/"
  1729. ]
  1730. },
  1731. "notification-url": "https://packagist.org/downloads/",
  1732. "license": [
  1733. "BSD-3-Clause"
  1734. ],
  1735. "authors": [
  1736. {
  1737. "name": "Sebastian Bergmann",
  1738. "email": "sebastian@phpunit.de",
  1739. "role": "lead"
  1740. }
  1741. ],
  1742. "description": "Library for calculating the complexity of PHP code units",
  1743. "homepage": "https://github.com/sebastianbergmann/complexity",
  1744. "funding": [
  1745. {
  1746. "url": "https://github.com/sebastianbergmann",
  1747. "type": "github"
  1748. }
  1749. ],
  1750. "time": "2020-07-25T14:01:34+00:00"
  1751. },
  1752. {
  1753. "name": "sebastian/diff",
  1754. "version": "4.0.2",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/sebastianbergmann/diff.git",
  1758. "reference": "1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113",
  1763. "reference": "1e90b4cf905a7d06c420b1d2e9d11a4dc8a13113",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "php": "^7.3 || ^8.0"
  1768. },
  1769. "require-dev": {
  1770. "phpunit/phpunit": "^9.0",
  1771. "symfony/process": "^4.2 || ^5"
  1772. },
  1773. "type": "library",
  1774. "extra": {
  1775. "branch-alias": {
  1776. "dev-master": "4.0-dev"
  1777. }
  1778. },
  1779. "autoload": {
  1780. "classmap": [
  1781. "src/"
  1782. ]
  1783. },
  1784. "notification-url": "https://packagist.org/downloads/",
  1785. "license": [
  1786. "BSD-3-Clause"
  1787. ],
  1788. "authors": [
  1789. {
  1790. "name": "Sebastian Bergmann",
  1791. "email": "sebastian@phpunit.de"
  1792. },
  1793. {
  1794. "name": "Kore Nordmann",
  1795. "email": "mail@kore-nordmann.de"
  1796. }
  1797. ],
  1798. "description": "Diff implementation",
  1799. "homepage": "https://github.com/sebastianbergmann/diff",
  1800. "keywords": [
  1801. "diff",
  1802. "udiff",
  1803. "unidiff",
  1804. "unified diff"
  1805. ],
  1806. "funding": [
  1807. {
  1808. "url": "https://github.com/sebastianbergmann",
  1809. "type": "github"
  1810. }
  1811. ],
  1812. "time": "2020-06-30T04:46:02+00:00"
  1813. },
  1814. {
  1815. "name": "sebastian/environment",
  1816. "version": "5.1.2",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://github.com/sebastianbergmann/environment.git",
  1820. "reference": "0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2",
  1825. "reference": "0a757cab9d5b7ef49a619f1143e6c9c1bc0fe9d2",
  1826. "shasum": ""
  1827. },
  1828. "require": {
  1829. "php": "^7.3 || ^8.0"
  1830. },
  1831. "require-dev": {
  1832. "phpunit/phpunit": "^9.0"
  1833. },
  1834. "suggest": {
  1835. "ext-posix": "*"
  1836. },
  1837. "type": "library",
  1838. "extra": {
  1839. "branch-alias": {
  1840. "dev-master": "5.0-dev"
  1841. }
  1842. },
  1843. "autoload": {
  1844. "classmap": [
  1845. "src/"
  1846. ]
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "BSD-3-Clause"
  1851. ],
  1852. "authors": [
  1853. {
  1854. "name": "Sebastian Bergmann",
  1855. "email": "sebastian@phpunit.de"
  1856. }
  1857. ],
  1858. "description": "Provides functionality to handle HHVM/PHP environments",
  1859. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1860. "keywords": [
  1861. "Xdebug",
  1862. "environment",
  1863. "hhvm"
  1864. ],
  1865. "funding": [
  1866. {
  1867. "url": "https://github.com/sebastianbergmann",
  1868. "type": "github"
  1869. }
  1870. ],
  1871. "time": "2020-06-26T12:07:24+00:00"
  1872. },
  1873. {
  1874. "name": "sebastian/exporter",
  1875. "version": "4.0.2",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/sebastianbergmann/exporter.git",
  1879. "reference": "571d721db4aec847a0e59690b954af33ebf9f023"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/571d721db4aec847a0e59690b954af33ebf9f023",
  1884. "reference": "571d721db4aec847a0e59690b954af33ebf9f023",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "php": "^7.3 || ^8.0",
  1889. "sebastian/recursion-context": "^4.0"
  1890. },
  1891. "require-dev": {
  1892. "ext-mbstring": "*",
  1893. "phpunit/phpunit": "^9.2"
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "4.0-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "classmap": [
  1903. "src/"
  1904. ]
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "BSD-3-Clause"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Sebastian Bergmann",
  1913. "email": "sebastian@phpunit.de"
  1914. },
  1915. {
  1916. "name": "Jeff Welch",
  1917. "email": "whatthejeff@gmail.com"
  1918. },
  1919. {
  1920. "name": "Volker Dusch",
  1921. "email": "github@wallbash.com"
  1922. },
  1923. {
  1924. "name": "Adam Harvey",
  1925. "email": "aharvey@php.net"
  1926. },
  1927. {
  1928. "name": "Bernhard Schussek",
  1929. "email": "bschussek@gmail.com"
  1930. }
  1931. ],
  1932. "description": "Provides the functionality to export PHP variables for visualization",
  1933. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1934. "keywords": [
  1935. "export",
  1936. "exporter"
  1937. ],
  1938. "funding": [
  1939. {
  1940. "url": "https://github.com/sebastianbergmann",
  1941. "type": "github"
  1942. }
  1943. ],
  1944. "time": "2020-06-26T12:08:55+00:00"
  1945. },
  1946. {
  1947. "name": "sebastian/global-state",
  1948. "version": "5.0.0",
  1949. "source": {
  1950. "type": "git",
  1951. "url": "https://github.com/sebastianbergmann/global-state.git",
  1952. "reference": "22ae663c951bdc39da96603edc3239ed3a299097"
  1953. },
  1954. "dist": {
  1955. "type": "zip",
  1956. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/22ae663c951bdc39da96603edc3239ed3a299097",
  1957. "reference": "22ae663c951bdc39da96603edc3239ed3a299097",
  1958. "shasum": ""
  1959. },
  1960. "require": {
  1961. "php": "^7.3 || ^8.0",
  1962. "sebastian/object-reflector": "^2.0",
  1963. "sebastian/recursion-context": "^4.0"
  1964. },
  1965. "require-dev": {
  1966. "ext-dom": "*",
  1967. "phpunit/phpunit": "^9.3"
  1968. },
  1969. "suggest": {
  1970. "ext-uopz": "*"
  1971. },
  1972. "type": "library",
  1973. "extra": {
  1974. "branch-alias": {
  1975. "dev-master": "5.0-dev"
  1976. }
  1977. },
  1978. "autoload": {
  1979. "classmap": [
  1980. "src/"
  1981. ]
  1982. },
  1983. "notification-url": "https://packagist.org/downloads/",
  1984. "license": [
  1985. "BSD-3-Clause"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Sebastian Bergmann",
  1990. "email": "sebastian@phpunit.de"
  1991. }
  1992. ],
  1993. "description": "Snapshotting of global state",
  1994. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1995. "keywords": [
  1996. "global state"
  1997. ],
  1998. "funding": [
  1999. {
  2000. "url": "https://github.com/sebastianbergmann",
  2001. "type": "github"
  2002. }
  2003. ],
  2004. "time": "2020-08-07T04:09:03+00:00"
  2005. },
  2006. {
  2007. "name": "sebastian/lines-of-code",
  2008. "version": "1.0.0",
  2009. "source": {
  2010. "type": "git",
  2011. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  2012. "reference": "e02bf626f404b5daec382a7b8a6a4456e49017e5"
  2013. },
  2014. "dist": {
  2015. "type": "zip",
  2016. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e02bf626f404b5daec382a7b8a6a4456e49017e5",
  2017. "reference": "e02bf626f404b5daec382a7b8a6a4456e49017e5",
  2018. "shasum": ""
  2019. },
  2020. "require": {
  2021. "nikic/php-parser": "^4.6",
  2022. "php": "^7.3 || ^8.0"
  2023. },
  2024. "require-dev": {
  2025. "phpunit/phpunit": "^9.2"
  2026. },
  2027. "type": "library",
  2028. "extra": {
  2029. "branch-alias": {
  2030. "dev-master": "1.0-dev"
  2031. }
  2032. },
  2033. "autoload": {
  2034. "classmap": [
  2035. "src/"
  2036. ]
  2037. },
  2038. "notification-url": "https://packagist.org/downloads/",
  2039. "license": [
  2040. "BSD-3-Clause"
  2041. ],
  2042. "authors": [
  2043. {
  2044. "name": "Sebastian Bergmann",
  2045. "email": "sebastian@phpunit.de",
  2046. "role": "lead"
  2047. }
  2048. ],
  2049. "description": "Library for counting the lines of code in PHP source code",
  2050. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  2051. "funding": [
  2052. {
  2053. "url": "https://github.com/sebastianbergmann",
  2054. "type": "github"
  2055. }
  2056. ],
  2057. "time": "2020-07-22T18:33:42+00:00"
  2058. },
  2059. {
  2060. "name": "sebastian/object-enumerator",
  2061. "version": "4.0.2",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  2065. "reference": "074fed2d0a6d08e1677dd8ce9d32aecb384917b8"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/074fed2d0a6d08e1677dd8ce9d32aecb384917b8",
  2070. "reference": "074fed2d0a6d08e1677dd8ce9d32aecb384917b8",
  2071. "shasum": ""
  2072. },
  2073. "require": {
  2074. "php": "^7.3 || ^8.0",
  2075. "sebastian/object-reflector": "^2.0",
  2076. "sebastian/recursion-context": "^4.0"
  2077. },
  2078. "require-dev": {
  2079. "phpunit/phpunit": "^9.0"
  2080. },
  2081. "type": "library",
  2082. "extra": {
  2083. "branch-alias": {
  2084. "dev-master": "4.0-dev"
  2085. }
  2086. },
  2087. "autoload": {
  2088. "classmap": [
  2089. "src/"
  2090. ]
  2091. },
  2092. "notification-url": "https://packagist.org/downloads/",
  2093. "license": [
  2094. "BSD-3-Clause"
  2095. ],
  2096. "authors": [
  2097. {
  2098. "name": "Sebastian Bergmann",
  2099. "email": "sebastian@phpunit.de"
  2100. }
  2101. ],
  2102. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  2103. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  2104. "funding": [
  2105. {
  2106. "url": "https://github.com/sebastianbergmann",
  2107. "type": "github"
  2108. }
  2109. ],
  2110. "time": "2020-06-26T12:11:32+00:00"
  2111. },
  2112. {
  2113. "name": "sebastian/object-reflector",
  2114. "version": "2.0.2",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  2118. "reference": "127a46f6b057441b201253526f81d5406d6c7840"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/127a46f6b057441b201253526f81d5406d6c7840",
  2123. "reference": "127a46f6b057441b201253526f81d5406d6c7840",
  2124. "shasum": ""
  2125. },
  2126. "require": {
  2127. "php": "^7.3 || ^8.0"
  2128. },
  2129. "require-dev": {
  2130. "phpunit/phpunit": "^9.0"
  2131. },
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "2.0-dev"
  2136. }
  2137. },
  2138. "autoload": {
  2139. "classmap": [
  2140. "src/"
  2141. ]
  2142. },
  2143. "notification-url": "https://packagist.org/downloads/",
  2144. "license": [
  2145. "BSD-3-Clause"
  2146. ],
  2147. "authors": [
  2148. {
  2149. "name": "Sebastian Bergmann",
  2150. "email": "sebastian@phpunit.de"
  2151. }
  2152. ],
  2153. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  2154. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  2155. "funding": [
  2156. {
  2157. "url": "https://github.com/sebastianbergmann",
  2158. "type": "github"
  2159. }
  2160. ],
  2161. "time": "2020-06-26T12:12:55+00:00"
  2162. },
  2163. {
  2164. "name": "sebastian/recursion-context",
  2165. "version": "4.0.2",
  2166. "source": {
  2167. "type": "git",
  2168. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2169. "reference": "062231bf61d2b9448c4fa5a7643b5e1829c11d63"
  2170. },
  2171. "dist": {
  2172. "type": "zip",
  2173. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/062231bf61d2b9448c4fa5a7643b5e1829c11d63",
  2174. "reference": "062231bf61d2b9448c4fa5a7643b5e1829c11d63",
  2175. "shasum": ""
  2176. },
  2177. "require": {
  2178. "php": "^7.3 || ^8.0"
  2179. },
  2180. "require-dev": {
  2181. "phpunit/phpunit": "^9.0"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-master": "4.0-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "classmap": [
  2191. "src/"
  2192. ]
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "BSD-3-Clause"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Sebastian Bergmann",
  2201. "email": "sebastian@phpunit.de"
  2202. },
  2203. {
  2204. "name": "Jeff Welch",
  2205. "email": "whatthejeff@gmail.com"
  2206. },
  2207. {
  2208. "name": "Adam Harvey",
  2209. "email": "aharvey@php.net"
  2210. }
  2211. ],
  2212. "description": "Provides functionality to recursively process PHP variables",
  2213. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  2214. "funding": [
  2215. {
  2216. "url": "https://github.com/sebastianbergmann",
  2217. "type": "github"
  2218. }
  2219. ],
  2220. "time": "2020-06-26T12:14:17+00:00"
  2221. },
  2222. {
  2223. "name": "sebastian/resource-operations",
  2224. "version": "3.0.2",
  2225. "source": {
  2226. "type": "git",
  2227. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  2228. "reference": "0653718a5a629b065e91f774595267f8dc32e213"
  2229. },
  2230. "dist": {
  2231. "type": "zip",
  2232. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0653718a5a629b065e91f774595267f8dc32e213",
  2233. "reference": "0653718a5a629b065e91f774595267f8dc32e213",
  2234. "shasum": ""
  2235. },
  2236. "require": {
  2237. "php": "^7.3 || ^8.0"
  2238. },
  2239. "require-dev": {
  2240. "phpunit/phpunit": "^9.0"
  2241. },
  2242. "type": "library",
  2243. "extra": {
  2244. "branch-alias": {
  2245. "dev-master": "3.0-dev"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "classmap": [
  2250. "src/"
  2251. ]
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "BSD-3-Clause"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Sebastian Bergmann",
  2260. "email": "sebastian@phpunit.de"
  2261. }
  2262. ],
  2263. "description": "Provides a list of PHP built-in functions that operate on resources",
  2264. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  2265. "funding": [
  2266. {
  2267. "url": "https://github.com/sebastianbergmann",
  2268. "type": "github"
  2269. }
  2270. ],
  2271. "time": "2020-06-26T12:16:22+00:00"
  2272. },
  2273. {
  2274. "name": "sebastian/type",
  2275. "version": "2.2.1",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://github.com/sebastianbergmann/type.git",
  2279. "reference": "86991e2b33446cd96e648c18bcdb1e95afb2c05a"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/86991e2b33446cd96e648c18bcdb1e95afb2c05a",
  2284. "reference": "86991e2b33446cd96e648c18bcdb1e95afb2c05a",
  2285. "shasum": ""
  2286. },
  2287. "require": {
  2288. "php": "^7.3 || ^8.0"
  2289. },
  2290. "require-dev": {
  2291. "phpunit/phpunit": "^9.2"
  2292. },
  2293. "type": "library",
  2294. "extra": {
  2295. "branch-alias": {
  2296. "dev-master": "2.2-dev"
  2297. }
  2298. },
  2299. "autoload": {
  2300. "classmap": [
  2301. "src/"
  2302. ]
  2303. },
  2304. "notification-url": "https://packagist.org/downloads/",
  2305. "license": [
  2306. "BSD-3-Clause"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "Sebastian Bergmann",
  2311. "email": "sebastian@phpunit.de",
  2312. "role": "lead"
  2313. }
  2314. ],
  2315. "description": "Collection of value objects that represent the types of the PHP type system",
  2316. "homepage": "https://github.com/sebastianbergmann/type",
  2317. "funding": [
  2318. {
  2319. "url": "https://github.com/sebastianbergmann",
  2320. "type": "github"
  2321. }
  2322. ],
  2323. "time": "2020-07-05T08:31:53+00:00"
  2324. },
  2325. {
  2326. "name": "sebastian/version",
  2327. "version": "3.0.1",
  2328. "source": {
  2329. "type": "git",
  2330. "url": "https://github.com/sebastianbergmann/version.git",
  2331. "reference": "626586115d0ed31cb71483be55beb759b5af5a3c"
  2332. },
  2333. "dist": {
  2334. "type": "zip",
  2335. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/626586115d0ed31cb71483be55beb759b5af5a3c",
  2336. "reference": "626586115d0ed31cb71483be55beb759b5af5a3c",
  2337. "shasum": ""
  2338. },
  2339. "require": {
  2340. "php": "^7.3 || ^8.0"
  2341. },
  2342. "type": "library",
  2343. "extra": {
  2344. "branch-alias": {
  2345. "dev-master": "3.0-dev"
  2346. }
  2347. },
  2348. "autoload": {
  2349. "classmap": [
  2350. "src/"
  2351. ]
  2352. },
  2353. "notification-url": "https://packagist.org/downloads/",
  2354. "license": [
  2355. "BSD-3-Clause"
  2356. ],
  2357. "authors": [
  2358. {
  2359. "name": "Sebastian Bergmann",
  2360. "email": "sebastian@phpunit.de",
  2361. "role": "lead"
  2362. }
  2363. ],
  2364. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2365. "homepage": "https://github.com/sebastianbergmann/version",
  2366. "funding": [
  2367. {
  2368. "url": "https://github.com/sebastianbergmann",
  2369. "type": "github"
  2370. }
  2371. ],
  2372. "time": "2020-06-26T12:18:43+00:00"
  2373. },
  2374. {
  2375. "name": "squizlabs/php_codesniffer",
  2376. "version": "3.5.6",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  2380. "reference": "e97627871a7eab2f70e59166072a6b767d5834e0"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/e97627871a7eab2f70e59166072a6b767d5834e0",
  2385. "reference": "e97627871a7eab2f70e59166072a6b767d5834e0",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "ext-simplexml": "*",
  2390. "ext-tokenizer": "*",
  2391. "ext-xmlwriter": "*",
  2392. "php": ">=5.4.0"
  2393. },
  2394. "require-dev": {
  2395. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2396. },
  2397. "bin": [
  2398. "bin/phpcs",
  2399. "bin/phpcbf"
  2400. ],
  2401. "type": "library",
  2402. "extra": {
  2403. "branch-alias": {
  2404. "dev-master": "3.x-dev"
  2405. }
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "BSD-3-Clause"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "Greg Sherwood",
  2414. "role": "lead"
  2415. }
  2416. ],
  2417. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  2418. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  2419. "keywords": [
  2420. "phpcs",
  2421. "standards"
  2422. ],
  2423. "time": "2020-08-10T04:50:15+00:00"
  2424. },
  2425. {
  2426. "name": "symfony/console",
  2427. "version": "v5.1.3",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/symfony/console.git",
  2431. "reference": "2226c68009627934b8cfc01260b4d287eab070df"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/symfony/console/zipball/2226c68009627934b8cfc01260b4d287eab070df",
  2436. "reference": "2226c68009627934b8cfc01260b4d287eab070df",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "php": ">=7.2.5",
  2441. "symfony/polyfill-mbstring": "~1.0",
  2442. "symfony/polyfill-php73": "^1.8",
  2443. "symfony/polyfill-php80": "^1.15",
  2444. "symfony/service-contracts": "^1.1|^2",
  2445. "symfony/string": "^5.1"
  2446. },
  2447. "conflict": {
  2448. "symfony/dependency-injection": "<4.4",
  2449. "symfony/dotenv": "<5.1",
  2450. "symfony/event-dispatcher": "<4.4",
  2451. "symfony/lock": "<4.4",
  2452. "symfony/process": "<4.4"
  2453. },
  2454. "provide": {
  2455. "psr/log-implementation": "1.0"
  2456. },
  2457. "require-dev": {
  2458. "psr/log": "~1.0",
  2459. "symfony/config": "^4.4|^5.0",
  2460. "symfony/dependency-injection": "^4.4|^5.0",
  2461. "symfony/event-dispatcher": "^4.4|^5.0",
  2462. "symfony/lock": "^4.4|^5.0",
  2463. "symfony/process": "^4.4|^5.0",
  2464. "symfony/var-dumper": "^4.4|^5.0"
  2465. },
  2466. "suggest": {
  2467. "psr/log": "For using the console logger",
  2468. "symfony/event-dispatcher": "",
  2469. "symfony/lock": "",
  2470. "symfony/process": ""
  2471. },
  2472. "type": "library",
  2473. "extra": {
  2474. "branch-alias": {
  2475. "dev-master": "5.1-dev"
  2476. }
  2477. },
  2478. "autoload": {
  2479. "psr-4": {
  2480. "Symfony\\Component\\Console\\": ""
  2481. },
  2482. "exclude-from-classmap": [
  2483. "/Tests/"
  2484. ]
  2485. },
  2486. "notification-url": "https://packagist.org/downloads/",
  2487. "license": [
  2488. "MIT"
  2489. ],
  2490. "authors": [
  2491. {
  2492. "name": "Fabien Potencier",
  2493. "email": "fabien@symfony.com"
  2494. },
  2495. {
  2496. "name": "Symfony Community",
  2497. "homepage": "https://symfony.com/contributors"
  2498. }
  2499. ],
  2500. "description": "Symfony Console Component",
  2501. "homepage": "https://symfony.com",
  2502. "funding": [
  2503. {
  2504. "url": "https://symfony.com/sponsor",
  2505. "type": "custom"
  2506. },
  2507. {
  2508. "url": "https://github.com/fabpot",
  2509. "type": "github"
  2510. },
  2511. {
  2512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2513. "type": "tidelift"
  2514. }
  2515. ],
  2516. "time": "2020-07-06T13:23:11+00:00"
  2517. },
  2518. {
  2519. "name": "symfony/polyfill-ctype",
  2520. "version": "v1.18.1",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://github.com/symfony/polyfill-ctype.git",
  2524. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  2529. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  2530. "shasum": ""
  2531. },
  2532. "require": {
  2533. "php": ">=5.3.3"
  2534. },
  2535. "suggest": {
  2536. "ext-ctype": "For best performance"
  2537. },
  2538. "type": "library",
  2539. "extra": {
  2540. "branch-alias": {
  2541. "dev-master": "1.18-dev"
  2542. },
  2543. "thanks": {
  2544. "name": "symfony/polyfill",
  2545. "url": "https://github.com/symfony/polyfill"
  2546. }
  2547. },
  2548. "autoload": {
  2549. "psr-4": {
  2550. "Symfony\\Polyfill\\Ctype\\": ""
  2551. },
  2552. "files": [
  2553. "bootstrap.php"
  2554. ]
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Gert de Pagter",
  2563. "email": "BackEndTea@gmail.com"
  2564. },
  2565. {
  2566. "name": "Symfony Community",
  2567. "homepage": "https://symfony.com/contributors"
  2568. }
  2569. ],
  2570. "description": "Symfony polyfill for ctype functions",
  2571. "homepage": "https://symfony.com",
  2572. "keywords": [
  2573. "compatibility",
  2574. "ctype",
  2575. "polyfill",
  2576. "portable"
  2577. ],
  2578. "funding": [
  2579. {
  2580. "url": "https://symfony.com/sponsor",
  2581. "type": "custom"
  2582. },
  2583. {
  2584. "url": "https://github.com/fabpot",
  2585. "type": "github"
  2586. },
  2587. {
  2588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2589. "type": "tidelift"
  2590. }
  2591. ],
  2592. "time": "2020-07-14T12:35:20+00:00"
  2593. },
  2594. {
  2595. "name": "symfony/polyfill-intl-grapheme",
  2596. "version": "v1.18.1",
  2597. "source": {
  2598. "type": "git",
  2599. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  2600. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5"
  2601. },
  2602. "dist": {
  2603. "type": "zip",
  2604. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  2605. "reference": "b740103edbdcc39602239ee8860f0f45a8eb9aa5",
  2606. "shasum": ""
  2607. },
  2608. "require": {
  2609. "php": ">=5.3.3"
  2610. },
  2611. "suggest": {
  2612. "ext-intl": "For best performance"
  2613. },
  2614. "type": "library",
  2615. "extra": {
  2616. "branch-alias": {
  2617. "dev-master": "1.18-dev"
  2618. },
  2619. "thanks": {
  2620. "name": "symfony/polyfill",
  2621. "url": "https://github.com/symfony/polyfill"
  2622. }
  2623. },
  2624. "autoload": {
  2625. "psr-4": {
  2626. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  2627. },
  2628. "files": [
  2629. "bootstrap.php"
  2630. ]
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Nicolas Grekas",
  2639. "email": "p@tchwork.com"
  2640. },
  2641. {
  2642. "name": "Symfony Community",
  2643. "homepage": "https://symfony.com/contributors"
  2644. }
  2645. ],
  2646. "description": "Symfony polyfill for intl's grapheme_* functions",
  2647. "homepage": "https://symfony.com",
  2648. "keywords": [
  2649. "compatibility",
  2650. "grapheme",
  2651. "intl",
  2652. "polyfill",
  2653. "portable",
  2654. "shim"
  2655. ],
  2656. "funding": [
  2657. {
  2658. "url": "https://symfony.com/sponsor",
  2659. "type": "custom"
  2660. },
  2661. {
  2662. "url": "https://github.com/fabpot",
  2663. "type": "github"
  2664. },
  2665. {
  2666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2667. "type": "tidelift"
  2668. }
  2669. ],
  2670. "time": "2020-07-14T12:35:20+00:00"
  2671. },
  2672. {
  2673. "name": "symfony/polyfill-intl-normalizer",
  2674. "version": "v1.18.1",
  2675. "source": {
  2676. "type": "git",
  2677. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2678. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e"
  2679. },
  2680. "dist": {
  2681. "type": "zip",
  2682. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  2683. "reference": "37078a8dd4a2a1e9ab0231af7c6cb671b2ed5a7e",
  2684. "shasum": ""
  2685. },
  2686. "require": {
  2687. "php": ">=5.3.3"
  2688. },
  2689. "suggest": {
  2690. "ext-intl": "For best performance"
  2691. },
  2692. "type": "library",
  2693. "extra": {
  2694. "branch-alias": {
  2695. "dev-master": "1.18-dev"
  2696. },
  2697. "thanks": {
  2698. "name": "symfony/polyfill",
  2699. "url": "https://github.com/symfony/polyfill"
  2700. }
  2701. },
  2702. "autoload": {
  2703. "psr-4": {
  2704. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2705. },
  2706. "files": [
  2707. "bootstrap.php"
  2708. ],
  2709. "classmap": [
  2710. "Resources/stubs"
  2711. ]
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "MIT"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "Nicolas Grekas",
  2720. "email": "p@tchwork.com"
  2721. },
  2722. {
  2723. "name": "Symfony Community",
  2724. "homepage": "https://symfony.com/contributors"
  2725. }
  2726. ],
  2727. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2728. "homepage": "https://symfony.com",
  2729. "keywords": [
  2730. "compatibility",
  2731. "intl",
  2732. "normalizer",
  2733. "polyfill",
  2734. "portable",
  2735. "shim"
  2736. ],
  2737. "funding": [
  2738. {
  2739. "url": "https://symfony.com/sponsor",
  2740. "type": "custom"
  2741. },
  2742. {
  2743. "url": "https://github.com/fabpot",
  2744. "type": "github"
  2745. },
  2746. {
  2747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2748. "type": "tidelift"
  2749. }
  2750. ],
  2751. "time": "2020-07-14T12:35:20+00:00"
  2752. },
  2753. {
  2754. "name": "symfony/polyfill-mbstring",
  2755. "version": "v1.18.1",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2759. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
  2764. "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
  2765. "shasum": ""
  2766. },
  2767. "require": {
  2768. "php": ">=5.3.3"
  2769. },
  2770. "suggest": {
  2771. "ext-mbstring": "For best performance"
  2772. },
  2773. "type": "library",
  2774. "extra": {
  2775. "branch-alias": {
  2776. "dev-master": "1.18-dev"
  2777. },
  2778. "thanks": {
  2779. "name": "symfony/polyfill",
  2780. "url": "https://github.com/symfony/polyfill"
  2781. }
  2782. },
  2783. "autoload": {
  2784. "psr-4": {
  2785. "Symfony\\Polyfill\\Mbstring\\": ""
  2786. },
  2787. "files": [
  2788. "bootstrap.php"
  2789. ]
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "Nicolas Grekas",
  2798. "email": "p@tchwork.com"
  2799. },
  2800. {
  2801. "name": "Symfony Community",
  2802. "homepage": "https://symfony.com/contributors"
  2803. }
  2804. ],
  2805. "description": "Symfony polyfill for the Mbstring extension",
  2806. "homepage": "https://symfony.com",
  2807. "keywords": [
  2808. "compatibility",
  2809. "mbstring",
  2810. "polyfill",
  2811. "portable",
  2812. "shim"
  2813. ],
  2814. "funding": [
  2815. {
  2816. "url": "https://symfony.com/sponsor",
  2817. "type": "custom"
  2818. },
  2819. {
  2820. "url": "https://github.com/fabpot",
  2821. "type": "github"
  2822. },
  2823. {
  2824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2825. "type": "tidelift"
  2826. }
  2827. ],
  2828. "time": "2020-07-14T12:35:20+00:00"
  2829. },
  2830. {
  2831. "name": "symfony/polyfill-php73",
  2832. "version": "v1.18.1",
  2833. "source": {
  2834. "type": "git",
  2835. "url": "https://github.com/symfony/polyfill-php73.git",
  2836. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca"
  2837. },
  2838. "dist": {
  2839. "type": "zip",
  2840. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  2841. "reference": "fffa1a52a023e782cdcc221d781fe1ec8f87fcca",
  2842. "shasum": ""
  2843. },
  2844. "require": {
  2845. "php": ">=5.3.3"
  2846. },
  2847. "type": "library",
  2848. "extra": {
  2849. "branch-alias": {
  2850. "dev-master": "1.18-dev"
  2851. },
  2852. "thanks": {
  2853. "name": "symfony/polyfill",
  2854. "url": "https://github.com/symfony/polyfill"
  2855. }
  2856. },
  2857. "autoload": {
  2858. "psr-4": {
  2859. "Symfony\\Polyfill\\Php73\\": ""
  2860. },
  2861. "files": [
  2862. "bootstrap.php"
  2863. ],
  2864. "classmap": [
  2865. "Resources/stubs"
  2866. ]
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Nicolas Grekas",
  2875. "email": "p@tchwork.com"
  2876. },
  2877. {
  2878. "name": "Symfony Community",
  2879. "homepage": "https://symfony.com/contributors"
  2880. }
  2881. ],
  2882. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2883. "homepage": "https://symfony.com",
  2884. "keywords": [
  2885. "compatibility",
  2886. "polyfill",
  2887. "portable",
  2888. "shim"
  2889. ],
  2890. "funding": [
  2891. {
  2892. "url": "https://symfony.com/sponsor",
  2893. "type": "custom"
  2894. },
  2895. {
  2896. "url": "https://github.com/fabpot",
  2897. "type": "github"
  2898. },
  2899. {
  2900. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2901. "type": "tidelift"
  2902. }
  2903. ],
  2904. "time": "2020-07-14T12:35:20+00:00"
  2905. },
  2906. {
  2907. "name": "symfony/polyfill-php80",
  2908. "version": "v1.18.1",
  2909. "source": {
  2910. "type": "git",
  2911. "url": "https://github.com/symfony/polyfill-php80.git",
  2912. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981"
  2913. },
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  2917. "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": ">=7.0.8"
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "1.18-dev"
  2927. },
  2928. "thanks": {
  2929. "name": "symfony/polyfill",
  2930. "url": "https://github.com/symfony/polyfill"
  2931. }
  2932. },
  2933. "autoload": {
  2934. "psr-4": {
  2935. "Symfony\\Polyfill\\Php80\\": ""
  2936. },
  2937. "files": [
  2938. "bootstrap.php"
  2939. ],
  2940. "classmap": [
  2941. "Resources/stubs"
  2942. ]
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "MIT"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "Ion Bazan",
  2951. "email": "ion.bazan@gmail.com"
  2952. },
  2953. {
  2954. "name": "Nicolas Grekas",
  2955. "email": "p@tchwork.com"
  2956. },
  2957. {
  2958. "name": "Symfony Community",
  2959. "homepage": "https://symfony.com/contributors"
  2960. }
  2961. ],
  2962. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2963. "homepage": "https://symfony.com",
  2964. "keywords": [
  2965. "compatibility",
  2966. "polyfill",
  2967. "portable",
  2968. "shim"
  2969. ],
  2970. "funding": [
  2971. {
  2972. "url": "https://symfony.com/sponsor",
  2973. "type": "custom"
  2974. },
  2975. {
  2976. "url": "https://github.com/fabpot",
  2977. "type": "github"
  2978. },
  2979. {
  2980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2981. "type": "tidelift"
  2982. }
  2983. ],
  2984. "time": "2020-07-14T12:35:20+00:00"
  2985. },
  2986. {
  2987. "name": "symfony/service-contracts",
  2988. "version": "v2.1.3",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/symfony/service-contracts.git",
  2992. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/58c7475e5457c5492c26cc740cc0ad7464be9442",
  2997. "reference": "58c7475e5457c5492c26cc740cc0ad7464be9442",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "php": ">=7.2.5",
  3002. "psr/container": "^1.0"
  3003. },
  3004. "suggest": {
  3005. "symfony/service-implementation": ""
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "branch-alias": {
  3010. "dev-master": "2.1-dev"
  3011. },
  3012. "thanks": {
  3013. "name": "symfony/contracts",
  3014. "url": "https://github.com/symfony/contracts"
  3015. }
  3016. },
  3017. "autoload": {
  3018. "psr-4": {
  3019. "Symfony\\Contracts\\Service\\": ""
  3020. }
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Nicolas Grekas",
  3029. "email": "p@tchwork.com"
  3030. },
  3031. {
  3032. "name": "Symfony Community",
  3033. "homepage": "https://symfony.com/contributors"
  3034. }
  3035. ],
  3036. "description": "Generic abstractions related to writing services",
  3037. "homepage": "https://symfony.com",
  3038. "keywords": [
  3039. "abstractions",
  3040. "contracts",
  3041. "decoupling",
  3042. "interfaces",
  3043. "interoperability",
  3044. "standards"
  3045. ],
  3046. "funding": [
  3047. {
  3048. "url": "https://symfony.com/sponsor",
  3049. "type": "custom"
  3050. },
  3051. {
  3052. "url": "https://github.com/fabpot",
  3053. "type": "github"
  3054. },
  3055. {
  3056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3057. "type": "tidelift"
  3058. }
  3059. ],
  3060. "time": "2020-07-06T13:23:11+00:00"
  3061. },
  3062. {
  3063. "name": "symfony/string",
  3064. "version": "v5.1.3",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://github.com/symfony/string.git",
  3068. "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://api.github.com/repos/symfony/string/zipball/f629ba9b611c76224feb21fe2bcbf0b6f992300b",
  3073. "reference": "f629ba9b611c76224feb21fe2bcbf0b6f992300b",
  3074. "shasum": ""
  3075. },
  3076. "require": {
  3077. "php": ">=7.2.5",
  3078. "symfony/polyfill-ctype": "~1.8",
  3079. "symfony/polyfill-intl-grapheme": "~1.0",
  3080. "symfony/polyfill-intl-normalizer": "~1.0",
  3081. "symfony/polyfill-mbstring": "~1.0",
  3082. "symfony/polyfill-php80": "~1.15"
  3083. },
  3084. "require-dev": {
  3085. "symfony/error-handler": "^4.4|^5.0",
  3086. "symfony/http-client": "^4.4|^5.0",
  3087. "symfony/translation-contracts": "^1.1|^2",
  3088. "symfony/var-exporter": "^4.4|^5.0"
  3089. },
  3090. "type": "library",
  3091. "extra": {
  3092. "branch-alias": {
  3093. "dev-master": "5.1-dev"
  3094. }
  3095. },
  3096. "autoload": {
  3097. "psr-4": {
  3098. "Symfony\\Component\\String\\": ""
  3099. },
  3100. "files": [
  3101. "Resources/functions.php"
  3102. ],
  3103. "exclude-from-classmap": [
  3104. "/Tests/"
  3105. ]
  3106. },
  3107. "notification-url": "https://packagist.org/downloads/",
  3108. "license": [
  3109. "MIT"
  3110. ],
  3111. "authors": [
  3112. {
  3113. "name": "Nicolas Grekas",
  3114. "email": "p@tchwork.com"
  3115. },
  3116. {
  3117. "name": "Symfony Community",
  3118. "homepage": "https://symfony.com/contributors"
  3119. }
  3120. ],
  3121. "description": "Symfony String component",
  3122. "homepage": "https://symfony.com",
  3123. "keywords": [
  3124. "grapheme",
  3125. "i18n",
  3126. "string",
  3127. "unicode",
  3128. "utf-8",
  3129. "utf8"
  3130. ],
  3131. "funding": [
  3132. {
  3133. "url": "https://symfony.com/sponsor",
  3134. "type": "custom"
  3135. },
  3136. {
  3137. "url": "https://github.com/fabpot",
  3138. "type": "github"
  3139. },
  3140. {
  3141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3142. "type": "tidelift"
  3143. }
  3144. ],
  3145. "time": "2020-07-08T08:27:49+00:00"
  3146. },
  3147. {
  3148. "name": "theseer/tokenizer",
  3149. "version": "1.2.0",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/theseer/tokenizer.git",
  3153. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  3158. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "ext-dom": "*",
  3163. "ext-tokenizer": "*",
  3164. "ext-xmlwriter": "*",
  3165. "php": "^7.2 || ^8.0"
  3166. },
  3167. "type": "library",
  3168. "autoload": {
  3169. "classmap": [
  3170. "src/"
  3171. ]
  3172. },
  3173. "notification-url": "https://packagist.org/downloads/",
  3174. "license": [
  3175. "BSD-3-Clause"
  3176. ],
  3177. "authors": [
  3178. {
  3179. "name": "Arne Blankerts",
  3180. "email": "arne@blankerts.de",
  3181. "role": "Developer"
  3182. }
  3183. ],
  3184. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3185. "funding": [
  3186. {
  3187. "url": "https://github.com/theseer",
  3188. "type": "github"
  3189. }
  3190. ],
  3191. "time": "2020-07-12T23:59:07+00:00"
  3192. },
  3193. {
  3194. "name": "vimeo/psalm",
  3195. "version": "3.14.2",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/vimeo/psalm.git",
  3199. "reference": "3538fe1955d47f6ee926c0769d71af6db08aa488"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/vimeo/psalm/zipball/3538fe1955d47f6ee926c0769d71af6db08aa488",
  3204. "reference": "3538fe1955d47f6ee926c0769d71af6db08aa488",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "amphp/amp": "^2.1",
  3209. "amphp/byte-stream": "^1.5",
  3210. "composer/package-versions-deprecated": "^1.8.0",
  3211. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  3212. "composer/xdebug-handler": "^1.1",
  3213. "ext-dom": "*",
  3214. "ext-json": "*",
  3215. "ext-libxml": "*",
  3216. "ext-simplexml": "*",
  3217. "ext-tokenizer": "*",
  3218. "felixfbecker/advanced-json-rpc": "^3.0.3",
  3219. "felixfbecker/language-server-protocol": "^1.4",
  3220. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0",
  3221. "nikic/php-parser": "4.3.* || 4.4.* || 4.5.* || 4.6.* || ^4.8",
  3222. "openlss/lib-array2xml": "^1.0",
  3223. "php": "^7.1.3|^8",
  3224. "sebastian/diff": "^3.0 || ^4.0",
  3225. "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
  3226. "webmozart/glob": "^4.1",
  3227. "webmozart/path-util": "^2.3"
  3228. },
  3229. "provide": {
  3230. "psalm/psalm": "self.version"
  3231. },
  3232. "require-dev": {
  3233. "amphp/amp": "^2.4.2",
  3234. "bamarni/composer-bin-plugin": "^1.2",
  3235. "brianium/paratest": "^4.0.0",
  3236. "ext-curl": "*",
  3237. "phpdocumentor/reflection-docblock": "^4.3.4 || ^5",
  3238. "phpmyadmin/sql-parser": "5.1.0",
  3239. "phpspec/prophecy": ">=1.9.0",
  3240. "phpunit/phpunit": "^7.5.16 || ^8.5 || ^9.0",
  3241. "psalm/plugin-phpunit": "^0.10",
  3242. "slevomat/coding-standard": "^5.0",
  3243. "squizlabs/php_codesniffer": "^3.5",
  3244. "symfony/process": "^4.3"
  3245. },
  3246. "suggest": {
  3247. "ext-igbinary": "^2.0.5"
  3248. },
  3249. "bin": [
  3250. "psalm",
  3251. "psalm-language-server",
  3252. "psalm-plugin",
  3253. "psalm-refactor",
  3254. "psalter"
  3255. ],
  3256. "type": "library",
  3257. "extra": {
  3258. "branch-alias": {
  3259. "dev-master": "3.x-dev",
  3260. "dev-2.x": "2.x-dev",
  3261. "dev-1.x": "1.x-dev"
  3262. }
  3263. },
  3264. "autoload": {
  3265. "psr-4": {
  3266. "Psalm\\": "src/Psalm/"
  3267. },
  3268. "files": [
  3269. "src/functions.php",
  3270. "src/spl_object_id.php"
  3271. ]
  3272. },
  3273. "notification-url": "https://packagist.org/downloads/",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "authors": [
  3278. {
  3279. "name": "Matthew Brown"
  3280. }
  3281. ],
  3282. "description": "A static analysis tool for finding errors in PHP applications",
  3283. "keywords": [
  3284. "code",
  3285. "inspection",
  3286. "php"
  3287. ],
  3288. "time": "2020-08-22T14:01:26+00:00"
  3289. },
  3290. {
  3291. "name": "webimpress/coding-standard",
  3292. "version": "1.1.5",
  3293. "source": {
  3294. "type": "git",
  3295. "url": "https://github.com/webimpress/coding-standard.git",
  3296. "reference": "f201b55632c933cd80abb15dc7caa21f7c733215"
  3297. },
  3298. "dist": {
  3299. "type": "zip",
  3300. "url": "https://api.github.com/repos/webimpress/coding-standard/zipball/f201b55632c933cd80abb15dc7caa21f7c733215",
  3301. "reference": "f201b55632c933cd80abb15dc7caa21f7c733215",
  3302. "shasum": ""
  3303. },
  3304. "require": {
  3305. "php": "^7.1",
  3306. "squizlabs/php_codesniffer": "^3.5.4"
  3307. },
  3308. "require-dev": {
  3309. "phpunit/phpunit": "^7.5.20 || ^8.5.3 || ^9.1.1"
  3310. },
  3311. "type": "phpcodesniffer-standard",
  3312. "extra": {
  3313. "dev-master": "1.1.x-dev",
  3314. "dev-develop": "1.2.x-dev"
  3315. },
  3316. "autoload": {
  3317. "psr-4": {
  3318. "WebimpressCodingStandard\\": "src/WebimpressCodingStandard/"
  3319. }
  3320. },
  3321. "notification-url": "https://packagist.org/downloads/",
  3322. "license": [
  3323. "BSD-2-Clause"
  3324. ],
  3325. "description": "Webimpress Coding Standard",
  3326. "keywords": [
  3327. "Coding Standard",
  3328. "PSR-2",
  3329. "phpcs",
  3330. "psr-12",
  3331. "webimpress"
  3332. ],
  3333. "funding": [
  3334. {
  3335. "url": "https://github.com/michalbundyra",
  3336. "type": "github"
  3337. }
  3338. ],
  3339. "time": "2020-04-06T18:45:57+00:00"
  3340. },
  3341. {
  3342. "name": "webmozart/assert",
  3343. "version": "1.9.1",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/webmozart/assert.git",
  3347. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  3352. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  3353. "shasum": ""
  3354. },
  3355. "require": {
  3356. "php": "^5.3.3 || ^7.0 || ^8.0",
  3357. "symfony/polyfill-ctype": "^1.8"
  3358. },
  3359. "conflict": {
  3360. "phpstan/phpstan": "<0.12.20",
  3361. "vimeo/psalm": "<3.9.1"
  3362. },
  3363. "require-dev": {
  3364. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  3365. },
  3366. "type": "library",
  3367. "autoload": {
  3368. "psr-4": {
  3369. "Webmozart\\Assert\\": "src/"
  3370. }
  3371. },
  3372. "notification-url": "https://packagist.org/downloads/",
  3373. "license": [
  3374. "MIT"
  3375. ],
  3376. "authors": [
  3377. {
  3378. "name": "Bernhard Schussek",
  3379. "email": "bschussek@gmail.com"
  3380. }
  3381. ],
  3382. "description": "Assertions to validate method input/output with nice error messages.",
  3383. "keywords": [
  3384. "assert",
  3385. "check",
  3386. "validate"
  3387. ],
  3388. "time": "2020-07-08T17:02:28+00:00"
  3389. },
  3390. {
  3391. "name": "webmozart/glob",
  3392. "version": "4.1.0",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/webmozart/glob.git",
  3396. "reference": "3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/webmozart/glob/zipball/3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe",
  3401. "reference": "3cbf63d4973cf9d780b93d2da8eec7e4a9e63bbe",
  3402. "shasum": ""
  3403. },
  3404. "require": {
  3405. "php": "^5.3.3|^7.0",
  3406. "webmozart/path-util": "^2.2"
  3407. },
  3408. "require-dev": {
  3409. "phpunit/phpunit": "^4.6",
  3410. "sebastian/version": "^1.0.1",
  3411. "symfony/filesystem": "^2.5"
  3412. },
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "4.1-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Webmozart\\Glob\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Bernhard Schussek",
  3431. "email": "bschussek@gmail.com"
  3432. }
  3433. ],
  3434. "description": "A PHP implementation of Ant's glob.",
  3435. "time": "2015-12-29T11:14:33+00:00"
  3436. },
  3437. {
  3438. "name": "webmozart/path-util",
  3439. "version": "2.3.0",
  3440. "source": {
  3441. "type": "git",
  3442. "url": "https://github.com/webmozart/path-util.git",
  3443. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  3444. },
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  3448. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  3449. "shasum": ""
  3450. },
  3451. "require": {
  3452. "php": ">=5.3.3",
  3453. "webmozart/assert": "~1.0"
  3454. },
  3455. "require-dev": {
  3456. "phpunit/phpunit": "^4.6",
  3457. "sebastian/version": "^1.0.1"
  3458. },
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "2.3-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "psr-4": {
  3467. "Webmozart\\PathUtil\\": "src/"
  3468. }
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "MIT"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "Bernhard Schussek",
  3477. "email": "bschussek@gmail.com"
  3478. }
  3479. ],
  3480. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  3481. "time": "2015-12-17T08:42:14+00:00"
  3482. }
  3483. ],
  3484. "aliases": [],
  3485. "minimum-stability": "stable",
  3486. "stability-flags": [],
  3487. "prefer-stable": false,
  3488. "prefer-lowest": false,
  3489. "platform": {
  3490. "php": "^7.2 || ^8.0"
  3491. },
  3492. "platform-dev": [],
  3493. "plugin-api-version": "1.1.0"
  3494. }