-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "idealcms/installer",
"description": "Установщик для Ideal CMS",
"type": "project",
"license": "LGPL-3.0",
"homepage": "https://github.com/idealcms/installer",
"authors": [
{
"name": "Paul Nikitin",
"email": "top@neox.ru",
"homepage": "https://idealcms.ru/",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"idealcms/idealcms": "dev-master"
},
"require-dev": {
"phpunit/phpunit" : "^8",
"squizlabs/php_codesniffer": "^3.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ideal\\": "src/Ideal/"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.0.x-dev"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"post-create-project-cmd": "Ideal\\Composer\\Script::postCreateProject"
}
}