-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
79 lines (79 loc) · 2.44 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
{
"name": "arachne/forms",
"description": "Integration of symfony/form to Nette framework.",
"type": "library",
"keywords": [ "symfony", "forms", "nette", "arachne" ],
"license": "MIT",
"authors": [
{
"name": "Jáchym Toušek",
"homepage": "http://enumag.cz",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.0",
"arachne/service-collections": "^0.1.0 || ^0.2.0",
"nette/application": "^2.4.0",
"nette/di": "^2.4.10",
"symfony/form": "^3.4.0 || ^4.0.0"
},
"suggest": {
"arachne/csrf": "Adds CSRF protection to forms.",
"arachne/twig": "Enables forms rendering using Twig templates.",
"arachne/upload": "Adds upload capability using nette/http.",
"kdyby/validator": "Enables forms validation using symfony/form."
},
"require-dev": {
"arachne/csrf": "^0.3.0",
"arachne/property-access": "^0.3.0",
"arachne/twig": "^0.4.0",
"codeception/codeception": "^2.4.3",
"contributte/codeception": "^1.0.1",
"friendsofphp/php-cs-fixer": "^2.8.0",
"kdyby/annotations": "^2.2.0",
"kdyby/doctrine-cache": "^2.6.1",
"kdyby/translation": "^2.5.0",
"kdyby/validator": "^0.6.0",
"latte/latte": "^2.4.0",
"nette/http": "^2.4.0",
"phpstan/phpstan": "^0.11.0",
"phpstan/phpstan-nette": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0",
"symfony/security-csrf": "^4.0.0",
"symfony/twig-bridge": "^4.0.0",
"tracy/tracy": "^2.4.0"
},
"autoload": {
"psr-4": {
"Arachne\\Forms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Integration\\": "tests/integration/src",
"Tests\\Functional\\": "tests/functional/src"
},
"files": [
"vendor/codeception/codeception/shim.php"
]
},
"scripts": {
"ci": [
"@fix",
"@analyse",
"@test"
],
"fix": "\"vendor/bin/php-cs-fixer\" fix",
"analyse": "\"vendor/bin/phpstan\" analyse --no-progress --level=max --configuration=phpstan.neon src tests",
"test": [
"\"vendor/bin/codecept\" build",
"\"vendor/bin/codecept\" run --debug"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
}
}