This repository has been archived by the owner on Oct 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.77 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
{
"name": "hammerspacecouk/cargo-api",
"description": "API for the application",
"type": "project",
"autoload": {
"psr-4": { "App\\": "src" },
"files": [
"src/Functions/Arrays.php",
"src/Functions/Classes.php",
"src/Functions/Dates.php",
"src/Functions/Json.php",
"src/Functions/Numbers.php",
"src/Functions/Strings.php",
"src/Functions/Transforms.php"
],
"exclude-from-classmap": ["/tests/", "/src/Data/Database/Migrations"]
},
"autoload-dev": {
"psr-4": { "Tests\\App\\": "tests/" }
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-sodium": "*",
"composer/package-versions-deprecated": "^1.11",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7",
"lcobucci/jwt": "^4.0",
"league/oauth2-client": "^2.4",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"ramsey/uuid": "^4.0",
"ramsey/uuid-doctrine": "^1.4",
"stripe/stripe-php": "^7.36",
"symfony/cache": "^5.0",
"symfony/console": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/flex": "^1.0",
"symfony/framework-bundle": "^5.0",
"symfony/monolog-bundle": "^3.1",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/twig-bundle": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.66",
"phpstan/phpstan-doctrine": "^0.12.27",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "dev-master",
"symfony/profiler-pack": "^1.0"
},
"authors": [
{
"name": "Hammerspace.co.uk",
"email": "[email protected]"
}
],
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"tests": [
"@test",
"@cs",
"@stan"
],
"test": "phpunit",
"cbf": "phpcbf public src tests bin",
"cs": "phpcs -s public src tests bin",
"stan": "phpstan analyse public src tests bin --memory-limit=-1 --level 7 -c phpstan.neon"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01C0MH09ZEX89TV51BQ273G78J",
"allow-contrib": false
}
}
}