-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
115 lines (115 loc) · 3.77 KB
/
composer.json
File metadata and controls
115 lines (115 loc) · 3.77 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "lexthink/php-skeleton",
"description": "This package provides a basic configuration to start building your next project using Symfony",
"type": "project",
"keywords": ["lexthink", "php", "skeleton", "package", "basic", "project", "symfony", "docker"],
"homepage": "https://github.com/lexthink/php-skeleton",
"license": "MIT",
"authors": [
{
"name": "Manuel Alejandro Paz Cetina",
"email": "lexthink@icloud.com"
}
],
"require": {
"php": "^8.0",
"doctrine/doctrine-bundle": "^2.3",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.8",
"sensio/framework-extra-bundle": "^6.1",
"symfony/console": "^5.2",
"symfony/dotenv": "^5.2",
"symfony/expression-language": "^5.2",
"symfony/flex": "^1.12",
"symfony/form": "^5.2",
"symfony/framework-bundle": "^5.2",
"symfony/mailer": "^5.2",
"symfony/messenger": "^5.2",
"symfony/monolog-bundle": "^3.7",
"symfony/options-resolver": "^5.2",
"symfony/security-bundle": "^5.2",
"symfony/translation": "^5.2",
"symfony/twig-bundle": "^5.2",
"symfony/uid": "^5.2",
"symfony/validator": "^5.2",
"symfony/yaml": "^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/debug-bundle": "^5.2",
"symfony/phpunit-bridge": "^5.2",
"symfony/stopwatch": "^5.2",
"symfony/var-dumper": "^5.2",
"symfony/web-profiler-bundle": "^5.2"
},
"conflict": {
"symfony/symfony": "*"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php80": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"dev:check-style": [
"vendor/bin/php-cs-fixer fix --ansi --dry-run --verbose",
"vendor/bin/phpcs"
],
"dev:fix-style": [
"vendor/bin/php-cs-fixer fix --ansi --verbose",
"vendor/bin/phpcbf"
],
"dev:tests": [
"@dev:check-style",
"@dev:phpunit",
"@dev:phpstan"
],
"dev:phpstan": "vendor/bin/phpstan analyse --ansi --verbose",
"dev:phpunit": "vendor/bin/phpunit --testdox --verbose --stop-on-failure",
"dev:coverage": "@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html var/coverage/html/"
},
"scripts-descriptions": {
"dev:check-style": "DEV: search for code style errors using php-cs-fixer and phpcs",
"dev:fix-style": "DEV: fix code style errors using php-cs-fixer and phpcbf",
"dev:tests": "DEV: run @dev:check-style, @dev:phpunit and @dev:phpstan",
"dev:phpstan": "DEV: run static analysis using phpstan",
"dev:phpunit": "DEV: run tests using phpunit",
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in var/coverage/html/"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.2.*"
}
}
}