-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
37 lines (37 loc) · 846 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
34
35
36
37
{
"name": "strontium/pjax-bundle",
"type": "symfony-bundle",
"description": "Integration of defunkt/jquery-pjax into Symfony 2",
"keywords": [
"pjax",
"Symfony"
],
"license": "MIT",
"authors": [
{
"name": "Aleksey Bannov",
"email": "a.s.bannov@gmail.com",
"homepage": "https://github.com/Strontium-90"
}
],
"autoload": {
"psr-4": {
"Strontium\\PjaxBundle\\": ""
}
},
"require": {
"php": "^7.1",
"symfony/framework-bundle": "*",
"symfony/twig-bundle": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"phpspec/prophecy-phpunit": "~1.1"
},
"scripts": {},
"extra": {
"branch-alias": {
"dev-master": "0.6-dev"
}
}
}