-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·86 lines (86 loc) · 2.71 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
{
"name": "frontastic/common",
"license": "None",
"version": "2.48.5",
"repositories": [
{
"type": "path",
"url": "../*"
}
],
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"conflict": {
"frontastic/catwalk": "<1.68.0"
},
"require": {
"ext-json": "*",
"ackintosh/ganesha": "^1.2",
"algolia/algoliasearch-client-php": "^3.0",
"beberlei/assert": "^3.2",
"behat/transliterator": "^1.3",
"cache/filesystem-adapter": "^1.0",
"cloudinary/cloudinary_php": "^1.8",
"composer/package-versions-deprecated": "@stable",
"contentful/contentful": "^6.0|^7.0",
"domnikl/statsd": "^2.6",
"guzzlehttp/guzzle": "^6.3||^7",
"guzzlehttp/promises": "^1.0",
"justinrainbow/json-schema": "@stable",
"frontastic/data-object": "@stable",
"league/oauth2-client": "^2.3",
"myclabs/deep-copy": "^1.0",
"ramsey/uuid": "^3.9||^4",
"seld/jsonlint": "@stable",
"swiftmailer/swiftmailer": "^6.2",
"symfony/config": "^4.4||^5.4",
"symfony/dependency-injection": "^4.4||^5.4",
"symfony/event-dispatcher": "^4.4||^5.4",
"symfony/expression-language": "^4.4||^5.4",
"symfony/finder": "^4.4||^5.4",
"symfony/http-kernel": "^4.4||^5.4",
"symfony/symfony": "^4.4||^5.4",
"symfony/yaml": "^4.4||^5.4",
"woohoolabs/yang": "^2.3"
},
"require-dev": {
"doctrine/common": "^2.9",
"frontastic/apidocs": "@dev",
"pdepend/pdepend": "@stable",
"phake/phake": "^4.0",
"phploc/phploc": "@stable",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8",
"sebastian/phpcpd": "@stable",
"squizlabs/php_codesniffer": "@stable",
"symfony/swiftmailer-bundle": "^3.4"
},
"suggest": {
"algolia/algoliasearch-client-php": "Marked as suggested to avoid conflicts with users on previous versions"
},
"autoload": {
"psr-4": {
"Frontastic\\Common\\": "src/php/"
}
},
"autoload-dev": {
"psr-4": {
"Frontastic\\Common\\": "test/php/",
"Frontastic\\Common\\ApiTests\\": "test/api/"
}
},
"scripts": {
"phpstan": [
"vendor/bin/phpstan analyze --ansi -c phpstan.neon src/php/"
],
"api-tests": [
"phpunit --configuration phpunit.api.xml --colors=always"
],
"api-tests-debug": [
"php -dxdebug.remote_autostart=1 vendor/bin/phpunit --configuration phpunit.api.xml --colors=always"
]
}
}