|
1 | 1 | { |
2 | | - "name": "yiisoft/_____", |
3 | | - "type": "library", |
4 | | - "description": "_____", |
| 2 | + "name": "yiisoft/app-api", |
| 3 | + "type": "project", |
| 4 | + "description": "Yii Framework API project template", |
5 | 5 | "keywords": [ |
6 | | - "_____" |
| 6 | + "yii3", |
| 7 | + "app", |
| 8 | + "api", |
| 9 | + "rest" |
7 | 10 | ], |
8 | | - "homepage": "https://www.yiiframework.com/", |
| 11 | + "homepage": "https://github.com/yiisoft/app-api/", |
9 | 12 | "license": "BSD-3-Clause", |
10 | 13 | "support": { |
11 | | - "issues": "https://github.com/yiisoft/_____/issues?state=open", |
| 14 | + "issues": "https://github.com/yiisoft/app-api/issues?state=open", |
12 | 15 | "forum": "https://www.yiiframework.com/forum/", |
13 | 16 | "wiki": "https://www.yiiframework.com/wiki/", |
14 | 17 | "irc": "irc://irc.freenode.net/yii", |
15 | | - "source": "https://github.com/yiisoft/_____" |
| 18 | + "source": "https://github.com/yiisoft/app-api" |
16 | 19 | }, |
17 | 20 | "minimum-stability": "dev", |
18 | 21 | "prefer-stable": true, |
19 | 22 | "require": { |
20 | | - "php": "^7.4|^8.0" |
21 | | - }, |
22 | | - "require-dev": { |
23 | | - "infection/infection": "^0.16.3", |
24 | | - "phpunit/phpunit": "^9.3", |
25 | | - "vimeo/psalm": "^3.16" |
| 23 | + "php": "^7.4|^8.0", |
| 24 | + "cebe/markdown": "^1.2@dev", |
| 25 | + "cycle/orm": "^1.2", |
| 26 | + "cycle/proxy-factory": "^1.2", |
| 27 | + "myclabs/php-enum": "^1.7", |
| 28 | + "nyholm/psr7": "^1.0", |
| 29 | + "psr/container": "^1.0", |
| 30 | + "psr/http-factory": "^1.0", |
| 31 | + "psr/http-message": "^1.0", |
| 32 | + "psr/http-server-handler": "^1.0", |
| 33 | + "psr/http-server-middleware": "^1.0", |
| 34 | + "psr/log": "^1.1", |
| 35 | + "yiisoft/access": "^1.0", |
| 36 | + "yiisoft/aliases": "^1.0", |
| 37 | + "yiisoft/arrays": "^3.0@dev", |
| 38 | + "yiisoft/auth": "^1.0", |
| 39 | + "yiisoft/cache": "^3.0@dev", |
| 40 | + "yiisoft/cache-file": "^3.0@dev", |
| 41 | + "yiisoft/composer-config-plugin": "^1.0@dev", |
| 42 | + "yiisoft/data": "^3.0@dev", |
| 43 | + "yiisoft/data-response": "^3.0@dev", |
| 44 | + "yiisoft/di": "^3.0@dev", |
| 45 | + "yiisoft/factory": "^3.0@dev", |
| 46 | + "yiisoft/http": "^1.0@dev", |
| 47 | + "yiisoft/injector": "^1.0", |
| 48 | + "yiisoft/json": "^1.0", |
| 49 | + "yiisoft/log": "^3.0@dev", |
| 50 | + "yiisoft/log-target-file": "^3.0@dev", |
| 51 | + "yiisoft/request-body-parser": "^3.0@dev", |
| 52 | + "yiisoft/request-model": "^1.0@dev", |
| 53 | + "yiisoft/router": "^3.0@dev", |
| 54 | + "yiisoft/router-fastroute": "^3.0@dev", |
| 55 | + "yiisoft/security": "^1.0", |
| 56 | + "yiisoft/serializer": "^3.0@dev", |
| 57 | + "yiisoft/strings": "^1.0", |
| 58 | + "yiisoft/validator": "^3.0@dev", |
| 59 | + "yiisoft/var-dumper": "^3.0@dev", |
| 60 | + "yiisoft/yii-console": "^3.0@dev", |
| 61 | + "yiisoft/yii-cycle": "^3.0@dev", |
| 62 | + "yiisoft/yii-debug": "^3.0@dev", |
| 63 | + "yiisoft/yii-event": "^3.0@dev", |
| 64 | + "yiisoft/yii-web": "^3.0@dev" |
26 | 65 | }, |
27 | 66 | "autoload": { |
28 | 67 | "psr-4": { |
29 | | - "Yiisoft\\_____\\": "src" |
| 68 | + "App\\": "src" |
30 | 69 | } |
31 | 70 | }, |
32 | 71 | "autoload-dev": { |
33 | 72 | "psr-4": { |
34 | | - "Yiisoft\\_____\\Tests\\": "tests" |
| 73 | + "App\\Tests\\": "tests/", |
| 74 | + "App\\Tests\\Acceptance\\": "tests/acceptance/" |
35 | 75 | } |
36 | 76 | }, |
| 77 | + "scripts": { |
| 78 | + "post-update-cmd": [ |
| 79 | + "App\\Installer::postUpdate" |
| 80 | + ] |
| 81 | + }, |
37 | 82 | "extra": { |
38 | 83 | "branch-alias": { |
39 | | - "dev-master": "3.0.x-dev" |
| 84 | + "dev-master": "1.0.x-dev" |
| 85 | + }, |
| 86 | + "config-plugin-output-dir": "runtime/build/config", |
| 87 | + "config-plugin": { |
| 88 | + "common": "config/common.php", |
| 89 | + "web": [ |
| 90 | + "$common", |
| 91 | + "config/web.php" |
| 92 | + ], |
| 93 | + "params": [ |
| 94 | + "config/params.php", |
| 95 | + "?config/params-local.php" |
| 96 | + ], |
| 97 | + "providers": "config/providers.php", |
| 98 | + "events": "config/events.php" |
| 99 | + }, |
| 100 | + "config-plugin-alternatives": { |
| 101 | + "tests": { |
| 102 | + "params": "config/params-test.php" |
| 103 | + } |
40 | 104 | } |
41 | 105 | }, |
42 | 106 | "config": { |
43 | 107 | "sort-packages": true |
| 108 | + }, |
| 109 | + "require-dev": { |
| 110 | + "codeception/codeception": "^4.1", |
| 111 | + "codeception/lib-innerbrowser": "^1.3", |
| 112 | + "codeception/module-asserts": "^1.0.0", |
| 113 | + "codeception/module-db": "^1.0", |
| 114 | + "codeception/module-phpbrowser": "^1.0.0", |
| 115 | + "codeception/module-rest": "^1.2", |
| 116 | + "vimeo/psalm": "^4.0" |
44 | 117 | } |
45 | 118 | } |
0 commit comments