-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.45 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
{
"name": "sanderverkuil/posthog-symfony",
"description": "Symfony integration for PostHog (https://posthog.com)",
"type": "symfony-bundle",
"require": {
"php": "^8.0",
"jean85/pretty-package-versions": "^1.0|^2.0",
"posthog/posthog-php": "^3.0",
"symfony/config": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/event-dispatcher": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/polyfill-php80": "^1.28",
"symfony/security-core": "^6.0|^7.0",
"symfony/security-http": "^6.0|^7.0"
},
"license": "MIT",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"PostHog\\PostHogBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PostHog\\PostHogBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sander Verkuil",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"ergebnis/composer-normalize": "^1.0|^2.0",
"friendsofphp/php-cs-fixer": "^3.35",
"monolog/monolog": "^1.0|^2.0|^3.4",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^8.5.14|^9.3.9|^10.4",
"symfony/browser-kit": "^6.0|^7.0",
"symfony/cache": "^6.0|^7.0",
"symfony/console": "^6.0|^7.0",
"symfony/dom-crawler": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/http-client": "^6.0|^7.0",
"symfony/monolog-bundle": "^3.4",
"symfony/phpunit-bridge": "^6.0|^7.0",
"symfony/process": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"vimeo/psalm": "^5.15"
},
"scripts": {
"tests": [
"vendor/bin/phpunit --verbose"
],
"phpcs": [
"vendor/bin/php-cs-fixer fix --verbose --diff --dry-run"
],
"phpcs:fix": [
"vendor/bin/php-cs-fixer fix"
],
"phpstan": [
"vendor/bin/phpstan analyse"
],
"psalm": [
"vendor/bin/psalm"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
}
}