Skip to content

Commit ebc084b

Browse files
authored
Merge pull request #1031 from phalcon/3.2.x
3.2.0
2 parents a832aef + facc03e commit ebc084b

File tree

396 files changed

+200
-42025
lines changed

Some content is hidden

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

396 files changed

+200
-42025
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ env:
3434
- PHALCON_VERSION="v3.0.4"
3535

3636
script:
37-
- tests/lint.sh --lint ${TRAVIS_BUILD_DIR}/ide/stubs
37+
- true
3838

3939
notifications:
4040
email:

LICENSE.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
New BSD License
2-
---------------
32

4-
Copyright (c) 2011-2016, Phalcon Team
3+
Copyright (c) 2011-2017, Phalcon Framework Team
54
All rights reserved.
65

76
Redistribution and use in source and binary forms, with or without
@@ -11,14 +10,14 @@ modification, are permitted provided that the following conditions are met:
1110
* Redistributions in binary form must reproduce the above copyright
1211
notice, this list of conditions and the following disclaimer in the
1312
documentation and/or other materials provided with the distribution.
14-
* Neither the name of the Phalcon Team nor the
13+
* Neither the name of the Phalcon nor the
1514
names of its contributors may be used to endorse or promote products
1615
derived from this software without specific prior written permission.
1716

1817
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1918
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2019
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21-
DISCLAIMED. IN NO EVENT SHALL "PHALCON TEAM" BE LIABLE FOR ANY
20+
DISCLAIMED. IN NO EVENT SHALL PHALCON FRAMEWORK TEAM BE LIABLE FOR ANY
2221
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2322
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2423
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ with Phalcon framework.
2121
## Requirements
2222

2323
* PHP >= 5.5
24-
* Phalcon >= 3.1.0
24+
* Phalcon >= 3.2.0
2525

2626
## Installing via Composer
2727

@@ -36,7 +36,7 @@ Create the composer.json file as follows:
3636
```json
3737
{
3838
"require-dev": {
39-
"phalcon/devtools": "~3.1"
39+
"phalcon/devtools": "~3.2"
4040
}
4141
}
4242
```
@@ -46,7 +46,7 @@ If you are still using Phalcon 2.0.x, create a `composer.json` with the followin
4646
```json
4747
{
4848
"require-dev": {
49-
"phalcon/devtools": "^3.0"
49+
"phalcon/devtools": "^2.0"
5050
}
5151
}
5252
```
@@ -90,7 +90,8 @@ the `phalcon.php` to a directory in your `PATH`, so you can issue phalcon comman
9090
where a phalcon project resides.
9191

9292
```bash
93-
ln -s ~/phalcon-devtools/phalcon.php /usr/bin/phalcon
93+
cd phalcon-devtools
94+
ln -s $(pwd)/phalcon.php /usr/bin/phalcon
9495
chmod ugo+x /usr/bin/phalcon
9596
```
9697

@@ -113,7 +114,7 @@ This command should display something similar to:
113114
```sh
114115
$ phalcon --help
115116

116-
Phalcon DevTools (3.1.1)
117+
Phalcon DevTools (3.2.0)
117118

118119
Help:
119120
Lists the commands available in Phalcon devtools
@@ -129,6 +130,7 @@ Available commands:
129130
scaffold (alias of: create-scaffold)
130131
migration (alias of: create-migration)
131132
webtools (alias of: create-webtools)
133+
console (alias of: shell, psysh)
132134
```
133135

134136
## Database adapter

bootstrap/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
defined('ADMIN_LTE_VERSION') || define('ADMIN_LTE_VERSION', '2.3.6');
104104

105105
/** @const COMPATIBLE_VERSION The compatible Phalcon version. */
106-
define('COMPATIBLE_VERSION', 3000040);
106+
defined('COMPATIBLE_VERSION') || define('COMPATIBLE_VERSION', 3020040);
107107

108108
/**
109109
* Register Devtools classes.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"require": {
2525
"php": ">=5.5",
26-
"ext-phalcon": "^3.0",
26+
"ext-phalcon": "~3.1",
2727
"psy/psysh": "@stable"
2828
},
2929
"require-dev": {

ide/stubs/Phalcon/Acl.php

Lines changed: 0 additions & 60 deletions
This file was deleted.

ide/stubs/Phalcon/Application.php

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)