-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.17 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
{
"name": "ady/captcha-bundle",
"description": "User and privacy friendly captcha for your Symfony project",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Ady",
"email": "[email protected]"
}
],
"scripts": {
"test": "@composer lint && phpunit",
"lint": "vendor/bin/php-cs-fixer fix -v --show-progress=dots",
"ci": "vendor/bin/php-cs-fixer fix --dry-run --stop-on-violation --diff && phpunit --colors=never"
},
"autoload": {
"psr-4": {
"Ady\\Bundle\\CaptchaBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Ady\\Bundle\\CaptchaBundle\\Tests\\": "Tests"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"symfony/framework-bundle": "~4.0|~5.0",
"symfony/form": "~4.0|~5.0",
"symfony/translation": "~4.0|^5.0",
"symfony/validator": "~4.0|^5.0",
"twig/twig": "^2.10|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.0|^5.0",
"phpunit/phpunit": "^7.5.15|^8.5|^9.0",
"friendsofphp/php-cs-fixer": "^3.0"
}
}