-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (74 loc) · 2.11 KB
/
composer.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "openstore/schema-core",
"description": "Openstore core schema",
"license": "MIT",
"keywords": [
"openstore",
"doctrine",
"schema",
"entities"
],
"homepage": "https://github.com/belgattitude/openstore-schema-core",
"type": "library",
"authors": [
{
"name": "Sébastien Vanvelthem",
"homepage": "http://www.nuvolia.com/",
"role": "Lead developer"
}
],
"autoload": {
"psr-4": {
"OpenstoreSchema\\Core\\": "src/OpenstoreSchema/Core"
}
},
"autoload-dev": {
"psr-4": {
"OpenstoreSchemaTest\\Core\\": "tests/src/OpenstoreSchemaTest/Core"
}
},
"require": {
"php": "^7.2",
"doctrine/dbal": "^2.10",
"doctrine/common": "^2.11",
"doctrine/orm": "^2.6.4",
"gedmo/doctrine-extensions": "^2.4.36",
"doctrine/data-fixtures": "^1.2.2",
"symfony/console": "~3.0|~4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.3",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-doctrine": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"jdorn/sql-formatter": "^1.2"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"bin": ["bin/openstore-schema-core"],
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@test"
],
"fix": [
"@cs-fix"
],
"build": [
"@generate-sql"
],
"cs-check": "vendor/bin/php-cs-fixer --diff --dry-run -v fix",
"cs-fix": "vendor/bin/php-cs-fixer -v fix",
"phpstan": "vendor/bin/phpstan analyse -l max -c phpstan.neon src tests bin",
"test": "phpunit",
"generate-sql": "bin/generate_sql.php"
},
"archive": {
"exclude": ["tests", "docs", "tools", ".travis.yml", ".codeclimate.yml", ".coveralls.yml", ".scrutinizer.yml", "phpcs.xml", ".gitignore"]
}
}