Skip to content

Commit e67b073

Browse files
committed
Merge remote-tracking branch 'remotes/dev/release' to master
2 parents 4c12233 + e6c1ddd commit e67b073

File tree

183 files changed

+8718
-1307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+8718
-1307
lines changed

Diff for: .travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,10 @@ php:
77

88
env:
99
- SYMFONY_VERSION=2.3.*
10-
- SYMFONY_VERSION=dev-master
1110

1211
before_script:
1312
- composer self-update
13+
- phpenv config-add travis.php.ini
1414
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source
1515

1616
script: phpunit --coverage-text
17-
18-
matrix:
19-
allow_failures:
20-
- env: SYMFONY_VERSION=dev-master

Diff for: CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1+
CHANGELOG for 1.0.0-beta1
2+
===================
3+
This changelog references the relevant changes (new features, changes and bugs) done in 1.0.0-beta1 versions.
4+
5+
* 1.0.0-beta1 (2013-09-30)
6+
* CRM Entities reports
7+
* Contacts Import/Export
8+
* Account association with contacts
9+
* Custom entities and fields in usage
10+
111
CHANGELOG for 1.0.0-alpha6
212
===================
313

414
* 1.0.0-alpha6 (2013-09-12)
5-
* Leads and Opportunities
6-
* Flexible Workflow Engine (FWE)
15+
* Leads and Opportunities
16+
* Flexible Workflow Engine (FWE)
717

818
CHANGELOG for 1.0.0-alpha5
919
===================

Diff for: README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ chapter.
1010
Requirements
1111
------------
1212

13-
OroCRM requires Symfony 2, Doctrine 2 and PHP 5.3.3 or above.
13+
OroCRM requires Symfony 2, Doctrine 2 and PHP 5.3.8 or above.
1414

1515
Installation
1616
------------
@@ -31,3 +31,12 @@ To run unit tests of any bundnles :
3131
```bash
3232
phpunit
3333
```
34+
35+
Use as dependency in composer
36+
-----------------------------
37+
38+
```yaml
39+
"require": {
40+
"oro/crm": "dev-master",
41+
}
42+
```

Diff for: UPGRADE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
UPGRADE FROM 1.0.0-alpha versions
1+
UPGRADE to any 1.0.0-alpha and beta version
22
=======================
33

44
### General
55

6-
* Upgrade to any 1.0.0-alpha is not supported and full reinstall is required
6+
* Upgrade to 1.0.0-alpha or beta is not supported and full reinstall with drop database, clear cache folders is required
77

Diff for: composer.json

+6-9
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@
44
"homepage": "https://github.com/orocrm/crm.git",
55
"license": "The Open Software License version 3.0",
66
"autoload": {
7-
"psr-0": { "OroCRM\\Bundle": "src/" }
7+
"psr-0": {
8+
"OroCRM\\Bundle": "src/"
9+
}
810
},
911
"require": {
10-
"php": ">=5.3.3",
11-
"oro/platform": "1.0.*@dev"
12+
"php": ">=5.3.8",
13+
"oro/platform": "dev-master"
1214
},
13-
"minimum-stability": "dev",
14-
"extra": {
15-
"branch-alias": {
16-
"dev-master": "1.0-dev"
17-
}
18-
}
15+
"minimum-stability": "dev"
1916
}

Diff for: phpunit.xml.dist

+5-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<testsuites>
1717
<testsuite name="Project Unit Tests">
18-
<directory suffix="Test.php">src/*/Bundle/*Bundle/Tests/Unit</directory>
18+
<directory suffix="Test.php">src/OroCRM/Bundle/*Bundle/Tests/Unit</directory>
1919
</testsuite>
2020
</testsuites>
2121

@@ -29,13 +29,10 @@
2929
<directory>src</directory>
3030
<exclude>
3131
<directory>vendor</directory>
32-
<directory>src/OroCRM/Bundle/DataFixtures</directory>
33-
<directory>src/OroCRM/Bundle/DataFixtures</directory>
34-
<directory>src/OroCRM/Bundle/Resources</directory>
35-
<directory>src/OroCRM/Bundle/Tests</directory>
36-
<directory>src/OroCRM/Bundle/Resources</directory>
37-
<directory>src/OroCRM/Bundle/Tests</directory>
38-
<directory>src/OroCRM/Bundle/vendor</directory>
32+
<directory>src/OroCRM/Bundle/*Bundle/DataFixtures</directory>
33+
<directory>src/OroCRM/Bundle/*Bundle/Resources</directory>
34+
<directory>src/OroCRM/Bundle/*Bundle/Tests</directory>
35+
<directory>src/OroCRM/Bundle/*Bundle/vendor</directory>
3936
</exclude>
4037
</whitelist>
4138
</filter>

0 commit comments

Comments
 (0)