-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "jaxon-php/jaxon-symfony",
"type": "library",
"description": "Jaxon library integration for the Symfony Framework",
"authors": [
{"name": "Thierry Feuzeu"}
],
"homepage": "https://github.com/jaxon-php/jaxon-symfony",
"license": "BSD-3-Clause",
"keywords": ["Jaxon", "Ajax", "PHP", "Symfony"],
"support": {
"issues": "https://github.com/jaxon-php/jaxon-symfony/issues",
"source": "https://github.com/jaxon-php/jaxon-symfony"
},
"require": {
"jaxon-php/jaxon-core": "dev-main",
"symfony/framework-bundle": "5.*|6.*",
"symfony/expression-language": "*"
},
"require-dev": {
"twig/twig": "^3.10"
},
"provide": {
"jaxon-php/jaxon-view-twig": "dev-main"
},
"autoload": {
"psr-4": {
"Jaxon\\Symfony\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}