-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
102 lines (102 loc) · 3.12 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "kejawenlab/semart-skeleton",
"type": "project",
"description": "Symfony Skeleton with common functionalities so developer can focus on business",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"composer/composer": "^1.9",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/inflector": "^1.3",
"doctrine/orm": "^2.7",
"friendsofsymfony/jsrouting-bundle": "^2.2",
"kejawenlab/semart-collection": "dev-master",
"knplabs/knp-paginator-bundle": "^5.0",
"phlak/twine": "^2.1",
"ramsey/uuid-doctrine": "^1.4",
"snc/redis-bundle": "^3.0",
"stof/doctrine-extensions-bundle": "^1.4",
"symfony/asset": "^5.0",
"symfony/console": "^5.0",
"symfony/event-dispatcher": "^5.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^5.0",
"symfony/monolog-bundle": "^3.5",
"symfony/security-bundle": "^5.0",
"symfony/serializer-pack": "^1.0",
"symfony/templating": "^5.0",
"symfony/translation": "^5.0",
"symfony/validator": "^5.0",
"symfony/yaml": "^5.0"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php72": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3.0",
"phpunit/phpunit": "^8.0",
"symfony/debug-bundle": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/profiler-pack": "^1.0",
"symfony/var-dumper":"^5.0"
},
"config": {
"platform": {
"php": "7.2.9"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^5.0"
}
},
"autoload": {
"psr-4": {
"KejawenLab\\Semart\\Skeleton\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KejawenLab\\Semart\\Skeleton\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"KejawenLab\\Semart\\Skeleton\\Composer\\ScriptHandler::preInstall",
"@auto-scripts",
"KejawenLab\\Semart\\Skeleton\\Composer\\ScriptHandler::postInstall"
],
"post-update-cmd": [
"KejawenLab\\Semart\\Skeleton\\Composer\\ScriptHandler::preInstall",
"@auto-scripts",
"KejawenLab\\Semart\\Skeleton\\Composer\\ScriptHandler::postInstall"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"semart:install": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}