api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

installed.json 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. [
  2. {
  3. "name": "nyholm/psr7",
  4. "version": "1.1.0",
  5. "version_normalized": "1.1.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/Nyholm/psr7.git",
  9. "reference": "701fe7ea8c12c07b985b156d589134d328160cf7"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/701fe7ea8c12c07b985b156d589134d328160cf7",
  14. "reference": "701fe7ea8c12c07b985b156d589134d328160cf7",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "php": "^7.1",
  19. "php-http/message-factory": "^1.0",
  20. "psr/http-factory": "^1.0",
  21. "psr/http-message": "^1.0"
  22. },
  23. "provide": {
  24. "psr/http-factory-implementation": "1.0",
  25. "psr/http-message-implementation": "1.0"
  26. },
  27. "require-dev": {
  28. "http-interop/http-factory-tests": "dev-master",
  29. "php-http/psr7-integration-tests": "dev-master",
  30. "phpunit/phpunit": "^7.5"
  31. },
  32. "time": "2019-02-16T17:20:43+00:00",
  33. "type": "library",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "1.0-dev"
  37. }
  38. },
  39. "installation-source": "dist",
  40. "autoload": {
  41. "psr-4": {
  42. "Nyholm\\Psr7\\": "src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Tobias Nyholm",
  52. "email": "tobias.nyholm@gmail.com"
  53. },
  54. {
  55. "name": "Martijn van der Ven",
  56. "email": "martijn@vanderven.se"
  57. }
  58. ],
  59. "description": "A fast PHP7 implementation of PSR-7",
  60. "homepage": "http://tnyholm.se",
  61. "keywords": [
  62. "psr-17",
  63. "psr-7"
  64. ]
  65. },
  66. {
  67. "name": "nyholm/psr7-server",
  68. "version": "0.3.0",
  69. "version_normalized": "0.3.0.0",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/Nyholm/psr7-server.git",
  73. "reference": "1b71a848fcb066fb805b7a9ab3f41ff65bffcde8"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/1b71a848fcb066fb805b7a9ab3f41ff65bffcde8",
  78. "reference": "1b71a848fcb066fb805b7a9ab3f41ff65bffcde8",
  79. "shasum": ""
  80. },
  81. "require": {
  82. "php": "^7.1",
  83. "psr/http-factory": "^1.0",
  84. "psr/http-message": "^1.0"
  85. },
  86. "require-dev": {
  87. "nyholm/nsa": "^1.1",
  88. "nyholm/psr7": "^1.0",
  89. "phpunit/phpunit": "^7.0"
  90. },
  91. "time": "2018-09-02T10:41:28+00:00",
  92. "type": "library",
  93. "installation-source": "dist",
  94. "autoload": {
  95. "psr-4": {
  96. "Nyholm\\Psr7Server\\": "src/"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "MIT"
  102. ],
  103. "authors": [
  104. {
  105. "name": "Tobias Nyholm",
  106. "email": "tobias.nyholm@gmail.com"
  107. },
  108. {
  109. "name": "Martijn van der Ven",
  110. "email": "martijn@vanderven.se"
  111. }
  112. ],
  113. "description": "Helper classes to handle PSR-7 server requests",
  114. "homepage": "http://tnyholm.se",
  115. "keywords": [
  116. "psr-17",
  117. "psr-7"
  118. ]
  119. },
  120. {
  121. "name": "php-http/message-factory",
  122. "version": "v1.0.2",
  123. "version_normalized": "1.0.2.0",
  124. "source": {
  125. "type": "git",
  126. "url": "https://github.com/php-http/message-factory.git",
  127. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  132. "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "php": ">=5.4",
  137. "psr/http-message": "^1.0"
  138. },
  139. "time": "2015-12-19T14:08:53+00:00",
  140. "type": "library",
  141. "extra": {
  142. "branch-alias": {
  143. "dev-master": "1.0-dev"
  144. }
  145. },
  146. "installation-source": "dist",
  147. "autoload": {
  148. "psr-4": {
  149. "Http\\Message\\": "src/"
  150. }
  151. },
  152. "notification-url": "https://packagist.org/downloads/",
  153. "license": [
  154. "MIT"
  155. ],
  156. "authors": [
  157. {
  158. "name": "Márk Sági-Kazár",
  159. "email": "mark.sagikazar@gmail.com"
  160. }
  161. ],
  162. "description": "Factory interfaces for PSR-7 HTTP Message",
  163. "homepage": "http://php-http.org",
  164. "keywords": [
  165. "factory",
  166. "http",
  167. "message",
  168. "stream",
  169. "uri"
  170. ]
  171. },
  172. {
  173. "name": "psr/http-factory",
  174. "version": "1.0.0",
  175. "version_normalized": "1.0.0.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/php-fig/http-factory.git",
  179. "reference": "378bfe27931ecc54ff824a20d6f6bfc303bbd04c"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/378bfe27931ecc54ff824a20d6f6bfc303bbd04c",
  184. "reference": "378bfe27931ecc54ff824a20d6f6bfc303bbd04c",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "php": ">=7.0.0",
  189. "psr/http-message": "^1.0"
  190. },
  191. "time": "2018-07-30T21:54:04+00:00",
  192. "type": "library",
  193. "extra": {
  194. "branch-alias": {
  195. "dev-master": "1.0.x-dev"
  196. }
  197. },
  198. "installation-source": "dist",
  199. "autoload": {
  200. "psr-4": {
  201. "Psr\\Http\\Message\\": "src/"
  202. }
  203. },
  204. "notification-url": "https://packagist.org/downloads/",
  205. "license": [
  206. "MIT"
  207. ],
  208. "authors": [
  209. {
  210. "name": "PHP-FIG",
  211. "homepage": "http://www.php-fig.org/"
  212. }
  213. ],
  214. "description": "Common interfaces for PSR-7 HTTP message factories",
  215. "keywords": [
  216. "factory",
  217. "http",
  218. "message",
  219. "psr",
  220. "psr-17",
  221. "psr-7",
  222. "request",
  223. "response"
  224. ]
  225. },
  226. {
  227. "name": "psr/http-message",
  228. "version": "1.0.1",
  229. "version_normalized": "1.0.1.0",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/php-fig/http-message.git",
  233. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  238. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  239. "shasum": ""
  240. },
  241. "require": {
  242. "php": ">=5.3.0"
  243. },
  244. "time": "2016-08-06T14:39:51+00:00",
  245. "type": "library",
  246. "extra": {
  247. "branch-alias": {
  248. "dev-master": "1.0.x-dev"
  249. }
  250. },
  251. "installation-source": "dist",
  252. "autoload": {
  253. "psr-4": {
  254. "Psr\\Http\\Message\\": "src/"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "MIT"
  260. ],
  261. "authors": [
  262. {
  263. "name": "PHP-FIG",
  264. "homepage": "http://www.php-fig.org/"
  265. }
  266. ],
  267. "description": "Common interface for HTTP messages",
  268. "homepage": "https://github.com/php-fig/http-message",
  269. "keywords": [
  270. "http",
  271. "http-message",
  272. "psr",
  273. "psr-7",
  274. "request",
  275. "response"
  276. ]
  277. },
  278. {
  279. "name": "psr/http-server-handler",
  280. "version": "1.0.1",
  281. "version_normalized": "1.0.1.0",
  282. "source": {
  283. "type": "git",
  284. "url": "https://github.com/php-fig/http-server-handler.git",
  285. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  286. },
  287. "dist": {
  288. "type": "zip",
  289. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  290. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  291. "shasum": ""
  292. },
  293. "require": {
  294. "php": ">=7.0",
  295. "psr/http-message": "^1.0"
  296. },
  297. "time": "2018-10-30T16:46:14+00:00",
  298. "type": "library",
  299. "extra": {
  300. "branch-alias": {
  301. "dev-master": "1.0.x-dev"
  302. }
  303. },
  304. "installation-source": "dist",
  305. "autoload": {
  306. "psr-4": {
  307. "Psr\\Http\\Server\\": "src/"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "MIT"
  313. ],
  314. "authors": [
  315. {
  316. "name": "PHP-FIG",
  317. "homepage": "http://www.php-fig.org/"
  318. }
  319. ],
  320. "description": "Common interface for HTTP server-side request handler",
  321. "keywords": [
  322. "handler",
  323. "http",
  324. "http-interop",
  325. "psr",
  326. "psr-15",
  327. "psr-7",
  328. "request",
  329. "response",
  330. "server"
  331. ]
  332. },
  333. {
  334. "name": "psr/http-server-middleware",
  335. "version": "1.0.1",
  336. "version_normalized": "1.0.1.0",
  337. "source": {
  338. "type": "git",
  339. "url": "https://github.com/php-fig/http-server-middleware.git",
  340. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  341. },
  342. "dist": {
  343. "type": "zip",
  344. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  345. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  346. "shasum": ""
  347. },
  348. "require": {
  349. "php": ">=7.0",
  350. "psr/http-message": "^1.0",
  351. "psr/http-server-handler": "^1.0"
  352. },
  353. "time": "2018-10-30T17:12:04+00:00",
  354. "type": "library",
  355. "extra": {
  356. "branch-alias": {
  357. "dev-master": "1.0.x-dev"
  358. }
  359. },
  360. "installation-source": "dist",
  361. "autoload": {
  362. "psr-4": {
  363. "Psr\\Http\\Server\\": "src/"
  364. }
  365. },
  366. "notification-url": "https://packagist.org/downloads/",
  367. "license": [
  368. "MIT"
  369. ],
  370. "authors": [
  371. {
  372. "name": "PHP-FIG",
  373. "homepage": "http://www.php-fig.org/"
  374. }
  375. ],
  376. "description": "Common interface for HTTP server-side middleware",
  377. "keywords": [
  378. "http",
  379. "http-interop",
  380. "middleware",
  381. "psr",
  382. "psr-15",
  383. "psr-7",
  384. "request",
  385. "response"
  386. ]
  387. }
  388. ]