Blame view

framework/composer.json 635 Bytes
5fb8f6f6   Administrator   update rep
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
  {
  	"name": "silverstripe/framework",
  	"type": "silverstripe-module",
  	"description": "The SilverStripe framework",
  	"homepage": "http://silverstripe.org",
  	"license": "BSD-3-Clause",
  	"keywords": ["silverstripe", "framework"],
  	"authors": [
  		{
  			"name": "SilverStripe",
  			"homepage": "http://silverstripe.com"
  		},
  		{
  			"name": "The SilverStripe Community",
  			"homepage": "http://silverstripe.org"
  		}
  	],
  	"require": {
  		"php": ">=5.3.2",
  		"composer/installers": "*"
  	},
  	"require-dev": {
  		"phpunit/PHPUnit": "~3.7@stable"
  	},
  	"autoload": {
  		"classmap": ["tests/behat/features/bootstrap"]	
  	},
  	"minimum-stability": "dev"
  }