-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
69 lines (69 loc) · 2.13 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
{
"name": "friends-of-php/friends-of-php",
"require": {
"php": "^8.2",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.5",
"jajo/jsondb": "^3.0",
"kamermans/guzzle-oauth2-subscriber": "^1.0",
"league/period": "^5.0",
"mjaschen/phpgeo": "^5.0",
"nette/utils": "^3.2",
"rinvex/countries": "^9.0",
"stenope/stenope": "^0.8.0",
"symfony/asset": "^6.1",
"symfony/browser-kit": "^7.0",
"symfony/console": "^6.1",
"symfony/css-selector": "^6.3",
"symfony/debug-bundle": "^7.0",
"symfony/dependency-injection": "^6.1",
"symfony/dotenv": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/http-client": "^7.0",
"symfony/http-kernel": "^6.1",
"symfony/twig-bundle": "^7.0",
"symplify/package-builder": "^11.1",
"symplify/smart-file-system": "^11.1"
},
"require-dev": {
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9.2",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.0",
"rector/rector": "^1.0.0",
"symplify/easy-ci": "^12.1",
"symplify/easy-coding-standard": "^12.2",
"symplify/phpstan-extensions": "^11.1",
"symplify/phpstan-rules": "^12.0",
"webmozart/assert": "^1.10"
},
"autoload": {
"psr-4": {
"Fop\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fop\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check bin src tests --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --error-format symplify --ansi",
"generate": [
"bin/console import",
"bin/console stenope:build -e prod"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}