-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.96 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
{
"name": "idmarinas/advertising-bundle",
"description": "Show network ads in your Symfony App. Come with the Adsense Network and Generic network for add your own network.",
"type": "symfony-bundle",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Iván Diaz Marinas (IDMarinas)",
"email": "[email protected]",
"homepage": "https://github.com/idmarinas/advertising-bundle",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/idmarinas/advertising-bundle/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"symfony/config": "^5.4 | ^6.4 | ^7.0",
"symfony/dependency-injection": "^5.4 | ^6.4 | ^7.0",
"symfony/event-dispatcher": "^5.4 | ^6.4 | ^7.0",
"symfony/http-kernel": "^5.4 | ^6.4 | ^7.0",
"symfony/yaml": "^5.4 | ^6.4 | ^7.0",
"twig/twig": "^2.12 | ^3.0"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^4.2 | ^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.2 | ^5.1",
"nyholm/symfony-bundle-test": "^2.0 | ^3.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2",
"symfony/phpunit-bridge": "^5.3",
"symfony/test-pack": "^1.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Idm\\Bundle\\Advertising\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Idm\\Bundle\\Advertising\\Tests\\": "tests/"
}
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/idmarinas"
}
],
"scripts": {
"test": "phpunit --process-isolation",
"rector": "php vendor/bin/rector process"
}
}